在Ajax设计程序时动态加载文本域和下拉框:
其方法如下:
function createCellText(){
var text=document.createElement('input');
text.setAttribute('name','txt');
text.setAttribute('type','text');
text.setAttribute('id','txt');
text.setAttribute('value','txt');
text.setAttribute('size','3');
var cell=document.createElement('td');
cell.setAttribute('align','center');
cell.appendChild(text);
return cell;
}
function createCellSelect(){
var erp=new Array(2);
for(var i=0;i erp[i]="mm"+i;
}
var select=document.createElement('select');
select.setAttribute('id','mrp');
select.setAttribute('size','1');
for(var i=0;i window.alert("erp["+i+"]="+erp[i]);
var option=null;
option=document.createElement('option');
option.appendChild(document.createTextNode(erp[i]));
option.setAttribute('value','');
select.appendChild(option);
}
var cell=document.createElement('td');
cell.setAttribute('align','center');
cell.appendChild(select);
return cell;
}
阅读(1332) | 评论(1) | 转发(0) |