document.createElement 在 IE 8 中抛出错误。不支持此命令错误

发布于 2024-12-04 09:47:47 字数 806 浏览 0 评论 0原文

可能的重复:
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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

┼── 2024-12-11 09:47:47

您无法使用 setAttribute() 更改 IE 中 input 元素的 type。您可以尝试使用rdo.type = 'radio'(应该可以工作)或(innerHTML

此外,document.createElement() 与元素名称一起使用,即input。它不像像 jQuery 或类似库中的$()

You can not change the type of input elements in IE with setAttribute(). You could try with rdo.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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文