我正在尝试
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
答案 0 :(得分:1)
如果“thetest”是变量,则getElementById应该有效。如果它是你正在寻找的元素的id,那么它应该是这样的:document.getElementById('thetest')