- explore, firefox 둘다 만족하기
function setSelYear1(value1) {
var select1 = document.createElement("select");
select1.setAttribute("id","sel1");
var optionList = document.createElement("option");
optionList.setAttribute("value","25");
var optionListText = document.createTextNode("1시간00");
optionList.appendChild(optionListText);
select1.appendChild(optionList);
var selectBoxNode = document.getElementById("selectBox1");
selectBoxNode.appendChild(select1);
}
<div id="selectBox1"></div>
'programming > jsp' 카테고리의 다른 글
parent에서 iFrame함수 호출하기 (0) | 2012.03.21 |
---|---|
iframe 사이즈 늘리기(1) (0) | 2012.03.21 |
javascript debug (0) | 2012.03.21 |
prototype - Event.observe (0) | 2012.03.21 |
javascript - pop() (0) | 2012.03.21 |