document.all [test] .innerHTML在Firefox中不起作用

时间:2013-08-01 08:17:28

标签: javascript

我正在尝试

 function ddtip(thetest, thetext)

var Test = document.all[thetest].innerHTML;

var str = document.all[thetext].value;
var MyArray = str.split(",");

但它在Firefox中不起作用,但在IE中也是如此。 thetest thetext 是服务器控件的ID。

我也尝试过document.getElementById [thetest] .innerHTML;但这是错误。

请帮助。

谢谢,

的Rahul

1 个答案:

答案 0 :(得分:1)

如果“thetest”是变量,则getElementById应该有效。如果它是你正在寻找的元素的id,那么它应该是这样的:document.getElementById('thetest')