checkbox全选全不选:
prop用于操作元素的固有属性
attr用于自定义属性
$("#all").click(function(){
if(this.checked){
$("#list :checkbox").prop("checked", true);
}else{
$("#list :checkbox").prop("checked", false);
}
});
iframe内的元素操作外部元素:
$('#header-pic img', window.parent.document).attr("src", headpicsrc);//操作iframe父级元素
var height=document.getElementById("iframe").contentWindow.document.getElementById("main-content").offsetHeight;
document.getElementById("iframe").contentWindow.document.body.style.height=""+height+"px";//操作iframe内文档元素
ajax提交同步异步问题:
function checkout(str,checkResult) {
if (str.length != 0) {
$.ajax({
async:false,
type : 'post',
url : '${rc.contextPath}/order/checkidcard.do?bId=${bId}',
data : {
values : str
},
dataType : 'json',
success : function(data) {
if ("1" == data.msg) {
if (confirm("强制结束该旅客为完成订单?")) {
Forcend(data.orderid,data.vId);
}
checkResult="false";
} else if (data.msg=="2") {
checkResult="true";
} else if ("3" == data.msg) {
alert("该旅客已在本店入住");
checkResult="false";
}
},
error : function() {
alert("系统异常,请稍候再试。");
},
});
return checkResult;
};
}