【发布时间】:2013-08-20 15:19:48
【问题描述】:
所以我有一个像这样的sn-ps的html页面
<span dojoType='dijit.InlineEditBox' editor='dijit.form.Textarea' id='actionDetails13' value='Leave admit source entered during Express Registration' autoSave='false' noValueIndicator='[Details]'>
<script type='dojo/connect' event='onChange' args='value'>
</script>
</span>
这在 chrome 和 IE 中运行良好,但是当页面非常大时,只有 Internet Explorer 会引发错误
DOM Exception: NOT_FOUND_ERR (8)
并且那些特定的内联编辑框将不再出现。因此,在 1,000 个内联编辑框中,可能有 70% 会呈现。
如果我注释掉脚本 type='dojo/connect' 则不会引发错误。
我认为这可能是 IE 的一些限制,但有什么想法导致这种情况吗?
【问题讨论】:
标签: dojo inlineeditbox