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


jQuery Mobile Textinput create用法及代碼示例


jQuery Mobile 是一種基於網絡的技術,用於製作可在所有智能手機、平板電腦和台式機上訪問的響應式內容。

在本文中,我們將使用 jQuery Mobile Textinput 創建事件。創建 Textinput 小部件時會觸發此事件。

用法:

初始化文本輸入創造事件。

$( ".selector" ).textinput({
  create: function( event, ui ) {}
});
  • 將事件監聽器綁定到文本輸入創建事件。

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

參數:它接受具有兩個參數的回調函數。

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

CDN 鏈接:首先,添加項目所需的 jQuery Mobile 腳本。

<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-1.10.2.min.js”></script>
<script src=”https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

例子:此示例說明了 jQuery Mobile文本輸入 創造事件。

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <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-1.10.2.min.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <div data-role="page"> 
            <h1 style="color:green;"> 
                GeeksforGeeks 
            </h1> 
            <h3>jQuery Mobile Textinput  
                create Event</h3> 
            <div id="log"></div> 
            <div data-role="header"> 
            </div> 
            <div role="main" class="ui-content" 
                 style="width: 50%;"> 
                <label for="GFG">Enter Text:</label> 
                <textarea name="Geeks" id="GFG"></textarea> 
            </div> 
        </div> 
    </center> 
    <script> 
        $(document).ready(function () { 
            $("#GFG").textinput({ 
                create: function (event, ui) { } 
            }); 
            $("#GFG").on("textinputcreate",  
                         function (event, ui) { }); 
            $("#log").html( 
              'Textinput widget has been created.' 
            ); 
        }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery Mobile Textinput create Event

jQuery Mobile Textinput 創建事件

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



相關用法


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