php动态增加div,JavaScript动态创建div等元素实例

js动态创建div等元素实例

var Test={

createDiv:function(){

var div = document.createElement('div');

div.id="createDiv";

div.style.cssText = 'border:1px solid red; width:200px; z-index:100; height:20px;';

document.body.appendChild(div);

},

appendDivChild:function(){

var div = document.createElement('div');

div.id="appendDivChild";

div.style.cssText = 'border:1px solid green; width:400px; z-index:100; height:100px;';

var childDiv= document.createElement('div');

childDiv.id="childDiv";

childDiv.style.cssText = 'border:2px solid gray; width:200px; z-index:100; height:50px;';

div.appendChild(childDiv);

document.body.appendChild(div);

},

createSelect:function(){

var select=document.createElement('select');

select.id="select";

var option1=document.createElement('option');

option1.value=1;

option1.text=1;//非ie,添加内容

option1.innerHTML=1;//ie,添加内容

select.appendChild(option1);

var option2=document.createElement('option');

option2.value=2;

option2.text=2;

option2.innerHTML=2;

select.appendChild(option2);

var option3=document.createElement('option');

option3.value=3;

option3.text=1;

option3.innerHTML=3;

select.appendChild(option3);

document.body.appendChild(select);

},

createRadio:function(){

var radio=document.createElement('input');

radio.id='radio';

radio.type="radio";

radio.width="100";

var label=document.createElement('label');

label.text="男";

label.innerHTML="男";

document.body.appendChild(radio);

document.body.appendChild(label);

}

};

Test.createDiv();//创建div

Test.appendDivChild();//为追加子div

Test.createSelect();//创建下拉框

Test.createRadio();//创建单选按钮

1

2

3

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值