jquery mobile 菜单操作

一、生成菜单

jquery  mobile通过自身的UI渲染,可以将

 

通过firefox打开,使用firebug查看页面样式:

jquery mobile 菜单操作_第1张图片

 

jquery mobile 菜单操作_第2张图片

jquery mobile 通过div等元素标签的某个

 

二、选项操作

1.选项改变操作

jquery mobile的菜单项和

(2)取得值,设置菜单默认选项:

$(document).ready(function(){
				
				var test=$("#test").val();
				$("#foo option[value='"+ test +"']").attr("selected", true);  
				var index = $('option:selected', '#foo').index();
			    alert("index: " + index);
				var myselect = $("select#foo");
				myselect[0].selectedIndex = index;
				myselect.selectmenu("refresh");
				
				$("#foo").bind("change",function(){
					//alert("change option: " + $(this).val());
					//window.location.href=window.location.href;
				});
			});


此时,每次刷新,默认都是value为rush对应的option被选中。

注意:如果是请求到后台,然后在后台页面转向当前页面时,如果看到的内部html,看设置