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");
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)"});
}