大神给个力
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> var a1=document.createElement('a');//创建a标签 var text=document.createTextNode('这是一个a标签'); a1.appendChild(text); a1.setAttribute('href',' var body=document.querySelector('body'); body.appendChild(a1); </script> </body> </html>
如果你说的是用js创建的话,那你可以看看这个
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <script> var a1=document.createElement('a'); var text=document.createTextNode('这是一个a标签'); a1.appendChild(text); a1.setAttribute('href','http://www.baidu.com'); var body=document.querySelector('body'); body.appendChild(a1); </script> </body> </html>
上面那个不知道为什么,把我的代码吞了一部分
<a href="http://www.baidu.com"></a>