动态创建链接Javascript

Dynamically Create Link Javascript

本文关键字:Javascript 链接 创建 动态      更新时间:2023-09-26

我试图将文本设置为链接,这样当我点击它时,它就会运行一个函数。现在我只是把它设置在谷歌网站上,试图让文本显示为链接,但它似乎什么都没做。它只是静态文本。有什么建议吗?

        var leftDiv = document.createElement("div"); //Create left div
        leftDiv.id = "left"; //Assign div id
        leftDiv.setAttribute("style", "float:left; width:66.5%; line-height: 26px; text-align:left; font-size:12pt; padding-left:8px; height:26px;"); //Set div attributes
        leftDiv.style.background =  divColor;
        a = document.createElement('a');
        a.setAttribute('href', 'google.com');
        user_name = a.appendChild(document.createTextNode(fullName + ' '));
        leftDiv.appendChild(user_name); // Add name to left div

看看这个例子:

http://jsfiddle.net/ajXEW/

我在代码中添加了一些注释,解释了不同的步骤。

    var leftDiv = document.createElement("div"); //Create left div
    leftDiv.id = "left"; //Assign div id
    leftDiv.setAttribute("style", "float:left; width:66.5%; line-height: 26px; text-align:left; font-size:12pt; padding-left:8px; height:26px;"); //Set div attributes
    leftDiv.style.background =  "#FF0000";
    a = document.createElement('a');
    a.href =  'google.com'; // Insted of calling setAttribute 
    a.innerHTML = "Link" // <a>INNER_TEXT</a>
    leftDiv.appendChild(a); // Append the link to the div
    document.body.appendChild(leftDiv); // And append the div to the document body

试试这个:http://jsfiddle.net/HknMF/5/

var divColor = "red";
var fullName = "bob";
var leftDiv = document.createElement("div"); //Create left div
        leftDiv.id = "left"; //Assign div id
        leftDiv.setAttribute("style", "float:left; width:66.5%; line-height: 26px; text-align:left; font-size:12pt; padding-left:8px; height:26px;"); //Set div attributes
        leftDiv.style.background =  divColor;
        a = document.createElement('a');
        a.setAttribute('href', 'google.com');
        a.appendChild(document.createTextNode(fullName + ' '));
        leftDiv.appendChild(a); // Add name to left div
    document.body.appendChild(leftDiv);