怎么通过JS添加A标签

怎么通过JS添加A标签,第1张

需要准备的材料分别有:电脑、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>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11739294.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存