jQuery mobile是一款用于開發(fā)移動(dòng)端Web應(yīng)用程序的開源框架,提供了許多易于使用的API和UI組件。下面將介紹一些jQuery mobile的常用語法。
$(document).ready(function(){ //文檔加載完成后執(zhí)行函數(shù) //代碼 }); $(document).on('pageinit', function(){ //頁面初始化后執(zhí)行函數(shù) //代碼 }); $(document).on('pagebeforeshow', function(){ //頁面顯示前執(zhí)行函數(shù) //代碼 }); $(document).on('pagebeforehide', function(){ //頁面隱藏前執(zhí)行函數(shù) //代碼 }); $(document).on('pagecreate', function(){ //動(dòng)態(tài)創(chuàng)建頁面時(shí)執(zhí)行函數(shù) //代碼 }); $(document).on('swipeleft', function(){ //左滑動(dòng)時(shí)執(zhí)行函數(shù) //代碼 }); $(document).on('swiperight', function(){ //右滑動(dòng)時(shí)執(zhí)行函數(shù) //代碼 }); $.mobile.changePage('newpage.html', {transition:'slideup'}); //頁面跳轉(zhuǎn)并添加動(dòng)畫效果 $('#mylist').listview('refresh'); //動(dòng)態(tài)更新列表視圖 $('#mypopup').popup('open'); //動(dòng)態(tài)打開彈出框 $('#myselect').selectmenu('refresh'); //動(dòng)態(tài)更新下拉框
以上是一些jQuery mobile常用語法,掌握這些語法可以更加靈活地開發(fā)移動(dòng)端Web應(yīng)用程序。