问答详情
源自:9-7 节点属性

怎么创建a标签,并加href属性

大神给个力

提问者:qq_我的网名你不知道_0 2017-06-16 08:44

个回答

  • 慕勒7123956
    2017-06-16 09:18:42
    已采纳

    <!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创建的话,那你可以看看这个

  • 慕勒7123956
    2017-06-16 09:19:47

    <!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>

    上面那个不知道为什么,把我的代码吞了一部分

  • 都理解
    2017-06-16 09:18:53

    <a href="http://www.baidu.com"></a>