jQuery 移動是一組基於 HTML5 的用戶接口係統,旨在為移動設備、選項卡和桌麵創建響應式內容。它建立在jQuery。在本文中,我們將使用 jQuery Mobile彈出窗口創造創建彈出窗口時觸發的事件。
回調參數:回調函數接受事件類型的事件參數和 UI 對象。 UI 對象是空的,包含它是為了與 jQuery Mobile 庫中的其他事件保持一致。
用法:
-
使用指定的創建回調初始化彈出窗口。
$(".selector").popup({ create: function( event, ui ) { // Your code here } });
-
將事件偵聽器綁定到 popupcreate 事件。
$(".selector").on( "popupcreate", function( event, ui ) {} );
Parameters: 它接受一個包含兩個參數的回調函數。
- 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>
例子:下麵的例子演示了Popup的使用創造事件。
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content=
"width=device-width, initial-scale=1.0" />
<title>Popup - create Event</title>
<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>
</head>
<body>
<div data-role="page">
<center>
<h2 style="color:green">GeeksforGeeks</h2>
<h3>jQuery Mobile Popup create Event</h3>
<p id="target">Popup will open here</p>
<div data-role="popup" id="popup1">
<p>Welcome to GeeksforGeeks</p>
</div>
<button style="width: 450px;" onclick="openPopup()">
Open Popup
</button>
</center>
</div>
<script>
// Popup create event.
$("#popup1").popup({
create: function (event, ui) {
alert("Popup create Event triggered");
}
});
// A function to open the popup.
function openPopup() {
$("#popup1").popup("open", { positionTo: "#target" });
}
</script>
</body>
</html>
輸出:
參考: https://api.jquerymobile.com/popup/#event-create
相關用法
- jQuery Mobile Popup close()用法及代碼示例
- jQuery Mobile Popup classes用法及代碼示例
- jQuery Mobile Popup disable()用法及代碼示例
- jQuery Mobile Popup option()用法及代碼示例
- jQuery Mobile Popup enable()用法及代碼示例
- jQuery Mobile Popup reposition()用法及代碼示例
- jQuery Mobile Popup destroy()用法及代碼示例
- jQuery Mobile Popup open()用法及代碼示例
- jQuery Mobile Popup afteropen用法及代碼示例
- jQuery Mobile Popup tolerance用法及代碼示例
- jQuery Mobile Popup initSelector用法及代碼示例
- jQuery Mobile Popup beforeposition用法及代碼示例
- jQuery Mobile Popup defaults用法及代碼示例
- jQuery Mobile Popup afterclose用法及代碼示例
- jQuery Mobile Pagecontainer load()用法及代碼示例
- jQuery Mobile Pagecontainer getActivePage()用法及代碼示例
- jQuery Mobile Page bindRemove()用法及代碼示例
- jQuery Mobile Page setContainerBackground()用法及代碼示例
- jQuery Mobile Page removeContainerBackground()用法及代碼示例
- jQuery Mobile Page keepNativeSelector()用法及代碼示例
- jQuery Mobile Pagecontainer change()用法及代碼示例
- jQuery Mobile Page create用法及代碼示例
- jQuery Mobile Page beforecreate用法及代碼示例
- jQuery Mobile Pagecontainer changefailed用法及代碼示例
- jQuery Mobile Page closeBtnText用法及代碼示例
注:本文由純淨天空篩選整理自vpsop大神的英文原創作品 jQuery Mobile Popup create Event。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。