var values = window.parent.opener.document.getElementById(id "txt_dept_name").value; var keys = window.parent.opener.document.getElementById(id "hf_ids").value;
var ary = checkid.value.split("|"); var newsValues = ary[0]; var newsKeys = ary[1];
var ary = str.split(","); // 去重的算法 var json = {}; for (var i = 0; i < ary.length; i ) {
if (ary[i] != "") {
json["a" ary[i]] = ary[i]; } }
// 查看结果 var str2 = ""; for (var key in json) { str2 = "," json[key]; }
var s = str2.toString();
//去掉第一个逗号 if (s.substr(0, 1) == ',') { s = s.substr(1); }
return s; }
function add_all() { var ck = document.getElementsByTagName("input"); for (i = 0; i < ck.length; i ) { if (ck[i].type == "checkbox") { ck[i].checked = true; checkRe(ck[i]);
} }
}
function del_all() { var id = window.parent.getQry("ctrid") "_"; window.parent.opener.document.getElementById(id "txt_dept_name").value = ""; window.parent.opener.document.getElementById(id "hf_ids").value = "";
var ck = document.getElementsByTagName("input"); for (i = 0; i < ck.length; i ) { if (ck[i].type == "checkbox") { ck[i].checked = false;
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn