我正在编写基于Jquery Mobile 1.2,Jquery 1.8.2,css和HTML 5的应用程序,我需要允许用户选择多个图像并执行命令。
如果我不使用jquery.mobile-1.2.0.min.js库,以下工作原理:
CSS代码:
.image-checkbox-container input[type="checkbox"]{
display: none;
}
.image-checkbox-container img{
border: 0;
margin: 4px;
}
HTML:
<span class="image-checkbox-container">
<input type="checkbox" name="black-box" value="1" />
<img src="dummyimage1.jpg" />
</span>
<span class="image-checkbox-container">
<input type="checkbox" name="red-box" value="1" />
<img src="dummyimage2.jpg" />
</span>
<span class="image-checkbox-container">
<input type="checkbox" name="green-box" value="1" />
<img src="dummyimage3.jpg" />
</span>
JQuery的:
$('.image-checkbox-container img').live('click', function(){
if(!$(this).prev('input[type="checkbox"]').prop("checked")){
$(this).prev('input[type="checkbox"]').prop("checked", true);
this.style.border = '4px solid #38A';
this.style.margin = '0px';
}else{
$(this).prev('input[type="checkbox"]').prop("checked", false);
this.style.border = '0';
this.style.margin = '4px';
}
});
只要我将jquery.mobile-1.2.0.min.js库添加到代码中,它就不再正常运行了。取消选中/取消选中复选框不起作用。
我尝试使用checkboxradio(“刷新”),但没有运气。
我们非常感谢任何建议。
由于
答案 0 :(得分:0)
使用CSS解决方案怎么样?
另外添加这个自定义CSS:
.checked {
border : 4px solid #38A!important;
margin : 0px!important;
}
并使用此脚本:
<script>
$('.image-checkbox-container img').live('click', function(){
$this=$(this);
if($this.hasClass('checked')===true){
$this.removeClass('checked');
}else{
$this.addClass('checked');
}
});
</script>