我一直在尝试在listview中插入一个包含所有jquery mobile css功能的复选框(不是普通复选框)以及数据图标。可以做下面这样的事情吗?
我一直在尝试如下。
<ul data-role="listview">
<li>
<input type="checkbox" name="checkbox-1" id="checkbox-1" class="custom" />
<a href="#page4"><h3>Task 1</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="audi.html"><h3>Task 2</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="bmw.html"><h3>Task 3</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="acura.html"><h3>Task 4</h3><p>Lorem ipsum order no</p></a></li>
</ul>
但我得到这样的东西,没有复选框的CSS样式。 Plz对此有所帮助。
答案 0 :(得分:3)
重复此操作:选中数据图标附带的列表视图中的复选框。
http://jsfiddle.net/ek2QT/184/
标记:
<ul data-role="listview" data-theme="c" data-dividertheme="d">
<li>
<div class="checkBoxLeft">
<input type="checkbox" name="checkbox-0" id="checkbox-0" class="hidden-checkbox"/>
</div>
<a href="#" class="detailListText">Message 1 </a>
</li>
<li>
<div class="checkBoxLeft">
<input type="checkbox" name="checkbox-1" id="checkbox-1" class="hidden-checkbox" checked="checked" />
</div>
<a href="#" class="detailListText">Message 2 </a>
</li>
</ul>
代码:
$('#index').live('pagebeforeshow',function(e,data){
$('input[type="checkbox"]').each(function(){
($(this).is(':checked')) ? $(this).parent().parent().addClass('checked') : $(this).parent().parent().addClass('not-checked');
});
});
$('.checkBoxLeft').bind('click', function(e) {
if($(this).find('input[type="checkbox"]').is(':checked')){
$(this).removeClass('checked').addClass('not-checked');
$(this).find('input[type="checkbox"]').attr('checked' , false);
} else {
$(this).removeClass('not-checked').addClass('checked');
$(this).find('input[type="checkbox"]').attr('checked' , true);
}
});
CSS:
.detailListText{
margin: 0 0 0 20px;
}
.checkBoxLeft{
position: absolute;
left: 10px;
top: 28%;
width: 18px;
height: 18px;
background: #d9d9d9;
border-radius: 3px;
}
.hidden-checkbox {
display: none;
}
.not-checked, .checked {
background-image: url("http://www.dragan-gaic.info/elements.png");
background-repeat: no-repeat;
}
.not-checked {
background-position: 18px 0;
background-color:#d9d9d9;
}
.checked {
background-position: 0 0;
background-color:#6496bc;
}
答案 1 :(得分:0)
查看http://view.jquerymobile.com/1.3.2/dist/demos/widgets/checkbox/
处的图标位置示例复选框需要包装在标签中,然后您可以设置样式
您可以在此http://jsfiddle.net/peter/ckWDG/
中看到带有标签的复选框正确呈现,而没有标签的复选框看起来像普通的html复选框。
<ul data-role="listview">
<li>
<input type="checkbox" name="checkbox-1" id="checkbox-1" class="" />
<a href="#page4"><h3>Task 1</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="audi.html"><h3>Task 2</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="bmw.html"><h3>Task 3</h3><p>Lorem ipsum order no have may not be</p></a></li>
<li>
<a href="acura.html"><h3>Task 4</h3><p>Lorem ipsum order no</p></a> <label>
<input type="checkbox" name="checkbox-0 ">
</label></li>
</ul>