當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery Mobile Flipswitch create用法及代碼示例


jQuery Mobile 是一個構建在 jQuery 之上的 JavaScript 庫。它用於為不同屏幕尺寸的設備(例如智能手機、平板電腦和台式機)構建響應靈敏且可訪問的網站和 Web 應用程序。

在本文中,我們將使用 jQuery Mobile翻轉開關創造事件創建 Flipswitch 時觸發。

用法:

  • 初始化翻轉開關創造指定事件:

    $( ".selector" ).flipswitch({
      create: function( event, ui ) {
          // Your Code here.
      }
    });
  • 將事件監聽器綁定到翻轉開關創建事件:

    $( ".selector" ).on( "flipswitchcreate", function( event, ui ) {} );

參數:它接受一個包含兩個參數的回調函數:

  • event:它接受事件類型值。
  • ui:它接受對象類型值。 ui 對象可以為空,但用於與庫中的其他事件保持一致。

CDN 鏈接:

<link rel=”stylesheet” href=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”https://code.jquery.com/jquery-2.1.3.js”>
</script><script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js”></script>

例子:下麵的例子演示了使用Flipswitch創建一個事件。當 Flipswitch 創建事件觸發時,會出現一個警告框,其中包含消息“Flipswitch 創建已觸發的事件”。出現在屏幕上。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <title>GeeksForGeeks - FlipSwitch create event</title> 
    <meta name="viewport" 
          content="width=device-width, initial-scale=1" /> 
    <link rel="stylesheet"
          href= 
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" /> 
    <script 
          src= 
"http://code.jquery.com/jquery-2.1.3.js"> 
    </script> 
    <script 
          src= 
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.js"> 
    </script> 
  
</head> 
  
<body> 
    <div data-role="page" id="page"> 
        <div data-role="header"> 
            <h1 style="color: green;">GeeksforGeeks</h1> 
            <h3>Flipswitch Widget create event</h3> 
        </div> 
  
        <div class="ui-field-contain"> 
            <form> 
                <div data-role="fieldcontain"> 
                    <center> 
                        <label for="GFG"> Flipswitch: </label> 
                        <input type="checkbox" id="GFG" 
                               data-role="flipswitch" /> 
                    </center> 
                </div> 
            </form> 
        </div> 
    </div> 
  
    <script> 
        $("#GFG").flipswitch({ 
             // Initialize the flipswitch with create 
              // callback specified. 
            create: function (event, ui) { 
                alert("Flipswitch create event triggered."); 
            } 
        }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery Mobile Flipswitch create Event

參考:https://api.jquerymobile.com/flipswitch/#event-create



相關用法


注:本文由純淨天空篩選整理自vpsop大神的英文原創作品 jQuery Mobile Flipswitch create Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。