document.write 사용문의
Posted: 2005 08 03 18:51 17
첨으로 파이어폭스를 사용하는데요...하루종일 이것때문에 골치가 아푸네요..^^
***********
* 되는 코딩
***********
document.write("<form name='f_JsLink' method='post' action='/servlets/IGateWeb'>");
document.write("<input type='hidden' name='sTrSet' value='1'>");
document.write("<input type='hidden' name='sLstData' value='0100170243996610'>");
document.write("<input type='hidden' name='msgId' value='6429'>");
document.write("<input type='hidden' name='com_cmd' value='lbds0210'>");
document.write("</form>");
function aa(){
document.f_JsLink.submit();
}
***********
* 안되는 코딩
***********
function aa(){
document.write("<form name='f_JsLink' method='post' action='/servlets/IGateWeb'>");
document.write("<input type='hidden' name='sTrSet' value='1'>");
document.write("<input type='hidden' name='sLstData' value='0100170243996610'>");
document.write("<input type='hidden' name='msgId' value='6429'>");
document.write("<input type='hidden' name='com_cmd' value='lbds0210'>");
document.write("</form>");
document.f_JsLink.submit();
}
위에테스트처럼 document.write를 사용하려 하는데 function안에다 선언을 해야하거든요. value값을 function의 매개변수로받아오는거라..
근데 function 내에서는 document.write를 사용했더니 f_JsLink no has properties 라고 form이름을 못 찾는것 같습니다..
해결좀 부탁드려요..^^
***********
* 되는 코딩
***********
document.write("<form name='f_JsLink' method='post' action='/servlets/IGateWeb'>");
document.write("<input type='hidden' name='sTrSet' value='1'>");
document.write("<input type='hidden' name='sLstData' value='0100170243996610'>");
document.write("<input type='hidden' name='msgId' value='6429'>");
document.write("<input type='hidden' name='com_cmd' value='lbds0210'>");
document.write("</form>");
function aa(){
document.f_JsLink.submit();
}
***********
* 안되는 코딩
***********
function aa(){
document.write("<form name='f_JsLink' method='post' action='/servlets/IGateWeb'>");
document.write("<input type='hidden' name='sTrSet' value='1'>");
document.write("<input type='hidden' name='sLstData' value='0100170243996610'>");
document.write("<input type='hidden' name='msgId' value='6429'>");
document.write("<input type='hidden' name='com_cmd' value='lbds0210'>");
document.write("</form>");
document.f_JsLink.submit();
}
위에테스트처럼 document.write를 사용하려 하는데 function안에다 선언을 해야하거든요. value값을 function의 매개변수로받아오는거라..
근데 function 내에서는 document.write를 사용했더니 f_JsLink no has properties 라고 form이름을 못 찾는것 같습니다..
해결좀 부탁드려요..^^