document.createElement 在 IE 8 中抛出错误。不支持此命令错误
可能的重复:
Javascript 在 IE8 中不起作用
我有以下代码
var ind=1;
try
{
rdo = document.createElement('<input type="radio" name="radioOptions" />');
}
catch(err)
{
rdo = document.createElement('input');
}
rdo.setAttribute('type','radio');// error
rdo.setAttribute('name','radioOptions');
rdo.id = 'radioOption_'+ind;
rdo.value = ind;
经过彻底检查后, 在 IE 8 上抛出错误
rdo.setAttribute('type','radio')
,一个奇怪的事实是,当它在本地系统上时,它不会这样做。 我正在动态地将这个无线电输入添加到表单中。我已将文档类型设置为
<!doctype html>
“任何想法”,该类型适用于所有浏览器,包括 ASS HOLE IE
Possible Duplicate:
Javascript doesn't work in IE8
I have the following code
var ind=1;
try
{
rdo = document.createElement('<input type="radio" name="radioOptions" />');
}
catch(err)
{
rdo = document.createElement('input');
}
rdo.setAttribute('type','radio');// error
rdo.setAttribute('name','radioOptions');
rdo.id = 'radioOption_'+ind;
rdo.value = ind;
After a thorough checkup this line is throwing error on IE 8
rdo.setAttribute('type','radio')
and a strange fact is that when it is on the local system its not doing that.
I am dynamically adding this radio input to the form. And the Doc type i have set to
<!doctype html>
Any Idea what should work for all Browsers including the ASS HOLE IE
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法使用
setAttribute()
更改 IE 中input
元素的type
。您可以尝试使用rdo.type = 'radio'
(应该可以工作)或(呃)innerHTML
。此外,
document.createElement()
与元素名称一起使用,即input
。它不像像 jQuery 或类似库中的$()
。You can not change the
type
ofinput
elements in IE withsetAttribute()
. You could try withrdo.type = 'radio'
(which should work) or (ugh)innerHTML
.Also,
document.createElement()
is used with the element's name, i.e.input
. It is not like$()
in jQuery or similar libraries.