js_javascript 기술에서 중복 문자열을 제거하는 두 가지 방법

WBOY
풀어 주다: 2016-05-16 17:44:07
원래의
1383명이 탐색했습니다.
방법일:
复aze代码 代码如下:

function checkRe( checkid) {

var id = window.parent.getQry("ctrid") "_";

var 값 = window.parent.opener.document.getElementById(id "txt_dept_name").value;
var 키 = window.parent.opener.document.getElementById(id "hf_ids").value;

var ary = checkid.value.split("|");
var newsValues ​​= ary[0];
var newsKeys = ary[1];

if (checkid.checked) {
values ​​= value "," newsValues;
키 = 키 "," newsKeys;

}
else {
values ​​= value.replace(new RegExp("," newsValues), "");
keys = value.replace(new RegExp("," newsKeys), "");

}

values ​​= okd(값);
키 = okd(키);

window.parent.opener.document.getElementById(id "txt_dept_name").value = 값;
window.parent.opener.document.getElementById(id "hf_ids").value = 키;

반품;

}
//转换成数组,去掉复,再组合好。
function okd(str) {

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(json의 var key) {
str2 = "," json[key];
}

var s = str2.toString();

//去掉第一个逗号
if (s.substr(0, 1) == ',') {
s = s.substr(1);
}

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;

}
}
}

复system代码 代码如下:



방법이:
复主代码 代码如下:

function filterRepeatStr(str){
var ar2 = str.split(",");
var array = new Array();
var j=0
for(var i=0;iif((array == "" || array.toString().match(new RegExp( ar2[i],"g")) == null)&&ar2[i]!=""){
array[j] =ar2[i];
array.sort();
j ;
}
}
return array.toString();
}
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
최신 이슈
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿