JQM 做refresh操作.

JQM里面当我们更新了某些页面标签(如: listview, radiobuttons, checkboxes, select menus)里的数据时,必须做refresh操作.

为什么必须做refresh操作操作呢?因为JQM在做页面渲染的时候,为了使样式跟客户端程序相似, 隐藏了原始的标签然后用一些新的标签和自定义的样式来表现原标签,其实新样式的标签已经不是原来的标签,所以更新了数据必须做refresh操作.

 

各类标签的刷新

1.Textarea fields

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

2.Text input fields

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

3.Buttons

1
2
$( 'body' ).append( '<a href="" data-theme="e" id="myNewButton">testing</a>' );
$( '#myNewButton' ).button();

4.Combobox or select dropdowns

1
2
3
4
5
6
7
8
9
10
<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' );

5.Listviews

1
2
3
4
5
6
7
<ul id= "myList"  data-role= "listview"  data-inset= "true" >
<li>Acura</li>
<li>Audi</li>
<li>BMW</li>
</ul>
  
$( '#mylist' ).listview( 'refresh' );

6.Slider control

1
2
3
4
5
6
<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' );

7.Toggle switch

1
2
3
4
5
6
7
8
9
10
11
<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" );

8.Radio buttons

1
2
3
4
5
6
7
8
9
10
11
12
13
<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' );

9.Checkboxes

1
2
3
4
5
6
7
8
9
<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' );
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值