尝试在表单加载时设置自定义复选框值。调试告诉我复选框反映了从源加载的值,但自定义图形不会更新。
在我的表格中,我有
<input class="checkbox" type="checkbox" name="uitem_autorenew" id="uitem_autorenew" />
我的风格:
.checkbox {
display: none;
}
.toggle {
background: url("toggle.png") bottom left;
display: block;
width: 70px;
height: 22px;
}
.toggle.checked {
background-position: top left;
}
代码包括以下
$(document).ready(function() {
$('.checkbox').after(function() {
if ($(this).is(":checked")) {
return "<a href='#' class='toggle checked' ref='" + $(this).attr("id") + "'></a>";
} else {
return "<a href='#' class='toggle' ref='" + $(this).attr("id") + "'></a>";
}
});
...进入具有打开事件的对话框...根据数据确定设置检查或取消选中功能
var ar=$(this).data('renew');
console.log("Value of ar = " + ar); // which is Y
if (ar =="Y"){
$("#uitem_autorenew").prop('checked',true); // tried this
$("#uitem_autorenew").toggleClass("checked"); //tried this too
}
console.log ("Is checkbox checked?");
console.log ($("#uitem_autorenew").prop('checked')); // yes it is but the graphic has not toggled. Top left of toggle.png is has word "YES"
我只是想知道在样式没有改变的情况下我缺少什么。任何线索都欢迎并提前感谢。凯文