IE中的JavaScript问题

时间:2013-04-14 14:09:49

标签: php javascript internet-explorer dom

我在javascript中编写了一个代码,它会动态创建一个p属性以及一个删除内容的按钮。函数removeValue在Chrome和Firefox中运行良好,但在IE中不起作用。此外,setAttribute('style','')也无法在IE中运行。最后,当我使用window.location将值发送到另一个页面时,它会发送undefined而不是文本。

在Firefox和Chrome中似乎一切正常但我无法在IE中使用它(目前正在使用IE 7)。我该如何解决这个问题?

代码:

function removeValue(ob)
{
    ob.parentNode.parentNode.removeChild(ob.parentNode);
}
function throwval(obj)
{
    var sent_id = obj.id;     //get id of the button 
    var v = document.getElementById(sent_id).value;
    var newp = document.createElement("p");     //create a new <p> tag
    var text = document.createTextNode(v);
    var buttonnode= document.createElement('input');
    buttonnode.setAttribute('type','button');
    buttonnode.setAttribute('name','del');
    buttonnode.setAttribute('value','Remove');
    buttonnode.setAttribute('style','background-color: Transparent;width: 125;color: blue;border:0');
    buttonnode.setAttribute('onclick','removeValue(this)');
    newp.appendChild(text);
    newp.appendChild(buttonnode);
    document.getElementById("getselected").appendChild(newp);    //append the new <p> tag in the div    
}
function sendvalues()
{
    var div_val = document.getElementById("getselected");
    if(!div_val.getElementsByTagName("p").length)
    {
        alert("Select a value");
    }
    else
    {
        //get seperate values of the paragraph inside div
        var str="|";
        for (i=0; i < div_val.getElementsByTagName("p").length; i++)
        {
            var paragraphs = div_val.getElementsByTagName("p");
            if(!paragraphs.item(i).textContent)
        {
            var pvalues = paragraphs.item(i).innerText;
        }
        else 
        {
            var pvalues = paragraphs.item(i).textContent;
        }
            //var sendpvalues = "products=" + pvalues;
            // alert(pvalues);

            str = str + pvalues + "|";
            //alert (str);
            //ajaxOb.send(sendpvalues);

        }   
        // alert(str);
        window.location="send_data.php?str="+str;
    }
}

原来IE支持“innerText”,Firefox支持“textContent”。我使用“undefined”声明解决了if问题。代码已更新

1 个答案:

答案 0 :(得分:0)

IE在setAttribute函数和事件处理程序方面存在问题。 (阅读here。)除了onclick之外,请使用setAttribute属性。

buttonnode.setAttribute('onclick','removeValue(this)');
buttonnode.onclick = function() { removeValue(buttonnode); };