JQuery Mobile 技术
文章平均质量分 58
BesturnLee
众里寻她千百度,蓦然回首,那人却在灯火阑珊处。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
JQuery Mobile 页面过渡效果设置
$(document).ready(function(){ $('#default').bind('click', function() { $.mobile.loadingMessageTextVisible = false; $.mobile.showPageLoadingMsg(); }); $('#loadingMessageTextVisible').bind( 'clic原创 2013-01-29 17:06:14 · 1327 阅读 · 0 评论 -
JQuery Mobile 的4个初始化事件
/* JQuery Mobile 的4个初始化事件 */ $(document).bind('mobileinit', function(){ window.alert('1. JQuery Mobile加载时最先触发的事件'); // page loader 属性设置 $.mobile.loader.prototype.options.text = "正在加载中 ..."; $.mo原创 2013-01-30 17:13:25 · 1878 阅读 · 0 评论 -
JQuery Mobile 两个页面之间的参数传递
index.html 页面 $(document).bind('pagebeforechange',function(e, data){ if ( typeof data.toPage != "string" ) { //window.alert("From = " + data.options.data); //window.alert("A = " + data.option原创 2013-01-30 17:19:36 · 2607 阅读 · 0 评论 -
JQuery Mobile 的 “Cancel”和“Save”按钮组合
Cancel Submit原创 2013-01-31 11:11:35 · 1786 阅读 · 0 评论 -
通过AJAX和PHP,提交JQuery Mobile表单
File name: callajax.php <?php $firstName = $_POST[firstName]; $lastName = $_POST[lastName]; echo("First Name: " . $firstName . " Last Name: " . $lastName); ?> File name: index.ph原创 2013-01-31 11:01:15 · 4582 阅读 · 0 评论 -
JQuery Mobile 弹出式登录框方法
Login Please sign in Username: Password: Sign in原创 2013-01-31 11:06:23 · 3350 阅读 · 0 评论 -
JQuery Mobile 禁用所有链接的AJAX导航功能
$(document).ready(function() { // disable ajax nav $.mobile.ajaxLinksEnabled = false; });原创 2013-01-31 11:14:37 · 2789 阅读 · 0 评论
分享