javascript에서 가상 input 만들어내는 sample source
var cCateList = new Array();
cCateList[0] = new sCategory("N", "6", "test", "y", "3"); ..
..
..
for (var i=0; i < cCateList.length; i++) {
// I 추가, M 수정, D 삭제, N 변경안됨 , Z : 클라이언트에서 입력 후 삭제
if (cCateList[i].type == "I" || cCateList[i].type == "M" || cCateList[i].type == "D" || cCateList[i].type == "N") {
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'folderChannels';
input.value = serialize(cCateList[i]);
formObj.appendChild(input);
aInputObject.push(input);
input = document.createElement('input');
input.type = 'hidden';
input.name = 'channelNames';
input.value = cCateList[i].title;
formObj.appendChild(input);
aInputObject.push(input);
}
var cCateList = new Array();
cCateList[0] = new sCategory("N", "6", "test", "y", "3"); ..
..
..
for (var i=0; i < cCateList.length; i++) {
// I 추가, M 수정, D 삭제, N 변경안됨 , Z : 클라이언트에서 입력 후 삭제
if (cCateList[i].type == "I" || cCateList[i].type == "M" || cCateList[i].type == "D" || cCateList[i].type == "N") {
var input = document.createElement('input');
input.type = 'hidden';
input.name = 'folderChannels';
input.value = serialize(cCateList[i]);
formObj.appendChild(input);
aInputObject.push(input);
input = document.createElement('input');
input.type = 'hidden';
input.name = 'channelNames';
input.value = cCateList[i].title;
formObj.appendChild(input);
aInputObject.push(input);
}
'JSP & WEB & Ajax' 카테고리의 다른 글
jQuery로 작업하기 Part 1 (0) | 2009.06.16 |
---|---|
서블렛 + JDBC 연동시 코딩 고려사항 -제1탄- (0) | 2009.05.25 |
Struts + iBATIS 간단 예제 (0) | 2009.04.10 |
드래그&드롭 가능한 html table (0) | 2009.04.09 |
Google Ajax WebTool Kit (0) | 2009.04.09 |