jqueryMobile 动态添加元素,展现刷新视图方法

jQuery Mobile的是一个很好的移动开发框架,你可能已经知道,虽然它有不少难以解决的问题,可是我相信后续版本jquery会修复……我是很喜欢jquery的。这并非说它很完美无暇,不少开发人员遇到的状况也都难解决,好比:尝试使用代码来添加,更新或删除元素,使用JavaScript的页面跳转。在这篇博客文章中,我列出了一些动态添加组建从新刷新的方法。 jquery

1.Textarea field 框架

$('body').prepend('<textarea id="myTextArea"></textarea>');
$('#myTextArea').textinput();
2. Text input field

$('body').prepend('<input type="text" id="myTextField" />');
$('#myTextField').textinput();
3.button

$('body').prepend('<input type="text" id="myTextField" />');
$('#myTextField').textinput();
3. Combobox or select dropdowns

<label for="sCountry">Country:</label>
<select name="sCountry" id="sCountry">
	<option value="">Where You Live:</option>
	<option value="ad">Andorra</option>
	<option value="ae">United Arab Emirates</option>
</select>
 
var myselect = $("#sCountry");
myselect[0].selectedIndex = 3;
myselect.selectmenu('refresh');
4.最多见的动态添加 listview>li 标签
<ul id="myList" data-role="listview" data-inset="true">
	<li>A</li>
	<li>B</li>
	<li>C</li>
</ul>
 
$('#mylist').listview('refresh');

5.Slider control  ide

<div data-role="fieldcontain">
	<label for="slider-2">Input slider:</label>
	<input type="range" id="slider-2" value="25" min="0" max="100" />
</div>
 
$('#slider-2').val(80).slider('refresh');
6.Toggle switch

<div data-role="fieldcontain"> <label for="toggle">Flip switch:</label> <select name="toggle" id="toggle" data-role="slider"> <option value="off">Off</option> <option value="on">On</option> </select> </div> var myswitch = $("#toggle"); myswitch[0].selectedIndex = 1; myswitch .slider("refresh");

7. Radio

<div data-role="fieldcontain"> <fieldset data-role="controlgroup" data-type="horizontal"> <legend>Layout view:</legend> <input type="radio" name="radio-view" value="list" /> <label for="radio-view-a">List</label> <input type="radio" name="radio-view" value="grid" /> <label for="radio-view-b">Grid</label> <input type="radio" name="radio-view" value="gallery" /> <label for="radio-view-c">Gallery</label> </fieldset> </div> $("input[value=grid]").attr('checked',true).checkboxradio('refresh');
8. Checkboxes

<div data-role="fieldcontain">
	<fieldset data-role="controlgroup">
		<legend>Agree to the terms:</legend>
		<input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom" />
		<label for="checkbox-1">I agree</label>
	</fieldset>
</div>
 
$('#checkbox-1').attr('checked',true).checkboxradio('refresh');

还有不少还须要慢慢发现!我作的是一个移动点餐系统:目前产品界面显示以下图:不知道有没有谁本身封装的listview,或者号的插件推荐我使用的!或有更好的建议……欢迎发表。。。。。  spa


                                            做者:FakeMr 郏高阳 
.net

相关文章
相关标签/搜索