0

我一直在尝试在列表视图中插入一个复选框(不是普通的复选框),该复选框具有列表视图中的所有 jquery 移动 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 样式。请帮忙。

在此处输入图像描述

4

2 回答 2

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;    
}
于 2013-10-09T05:02:55.320 回答
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>
于 2013-09-23T07:13:55.863 回答