앱)check box to string
selectedCheckbox to String
case1)
$(":checkbox[name='chbox1']:checked").each(function(idx, obj){
resultString += "|"+obj.value;
});
if(resultString != ""){
resultString = resultString.subString(1);
}
return resultString;
case2)
if($("input[name='checkboxname']").length <= 0){
return;
}
var ids = "";
$("input[name='checkboxname']").each(function(){
if($(this).prop("checked")) {
ids += $(this).val() + "|";
}
});
case1)
$(":checkbox[name='chbox1']:checked").each(function(idx, obj){
resultString += "|"+obj.value;
});
if(resultString != ""){
resultString = resultString.subString(1);
}
return resultString;
case2)
if($("input[name='checkboxname']").length <= 0){
return;
}
var ids = "";
$("input[name='checkboxname']").each(function(){
if($(this).prop("checked")) {
ids += $(this).val() + "|";
}
});
'프론트엔드 > 자바스크립트' 카테고리의 다른 글
부모창 닫을때 지금 보고 있는 웹 페이지 창을 닫으려고 합니다 confirm 없이 닫는 방법 (0) | 2019.12.31 |
---|---|
앱)checkbox 모두 선택/선택된 count 세기 (0) | 2018.11.14 |
앱)autocomplete jquery sample (0) | 2018.11.14 |
앱)javascript에서 java spring과 연동처리 (0) | 2018.11.14 |
앱)자바스크립트와 node.js를 이용한 웹 크롤링 테크닉 (0) | 2018.11.13 |