需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html。
2、在index.html中的<script>标签,输入js代码:$('body').append('<a href="">添加的a标签</a>')。
3、浏览器运行index.html页面,此时会发现js成功添加了a标签再html上。
标签中不能插入js,只能在body,或者head里面引入js文件
<script src="name.js"></script>
<script>var a = "hello"alert(a)</script>
<a onclick='addimg()'>添加图片</a><div class='addimg'></div>
<script>
var i=0,div=document.getElementsByTagName("div")[0]
function addimg(){
var input=document.createElement("input")//创建input
input.setAttribute("type","file")//设置type属性
input.setAttribute("name","a"+(++i))//设置name属性
div.appendChild(input)//插入到div内
}
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)