乱七八糟
-
array.splice(index,howmany,item1,.....,itemX)
用于添加或删除数组中的元素,会改变原始数组。
index: 该参数是开始插入和(或)删除的数组元素的下标,必须是数字。(必需);
howmany: 规定应该删除多少元素。必须是数字,但可以是 "0"。
如果未规定此参数,则删除从 index 开始到原数组结尾的所有元素。(必需);
item1,.....,itemX:可选。要添加到数组的新元素;
for(var j=1; j<selectRow.length; j++){
if(treeNode.id == selectRow[j].rid){
//
selectRow.splice(j, 1);
}
}
-
$选择器
选择器里可以写变量,用+连接
$("#"+id).attr("value",content[i]);
-
attr和prop
选择框的selected和checked用prop
html的属性 (宽,高什么的)用attr
$(r[i]).find("input").prop("checked",false);
//设置不可选两种
$('#areaSelect').attr("disabled",true);
$('#areaSelect').attr("disabled","disabled");
//移除
$('#areaSelect').attr("disabled",false);
$('#areaSelect').removeAttr("disabled");
-
lulu ui的checkbox与ie8的兼容
function isIE8() {//判断是否为ie8
var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
var isIE = userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
if(isIE) {
var reIE = new RegExp("MSIE (\\d+\\.\\d+);");
reIE.test(userAgent);
var fIEVersion = parseFloat(RegExp["$1"]);
if(fIEVersion == 8) {
return true;
}else {
return false;
}
}
}
//判断ie8这个更短
var isIE=!!window.ActiveXObject;
var isIE8=isIE&&document.documentMode<9;
if(isIE8){
//ie8取消勾选,改input后一个label的css
$(r[i]).find("input").next().css({"background-position":"0px 0px","filter":"alpha(opacity=100)"});
}