我收到了这个错误:
未捕获的TypeError:无法设置null的属性'onclick' initJavaScript
文件: http://www.radiomrs.pl/wp-content/plugins/pierres-wordspew/ajax_shout.js 91行
为什么会这样? 在网站http://radiomrs.pl shoutbox工作不错。
答案 0 :(得分:1)
你应该相信你的浏览器......;)
转到ajax_shout.js第91行,你会发现:
document.getElementById('submitchat').onclick = sendComment;
document.getElementById('submitchat')为null,即DOM中没有这样的元素,或者当脚本试图访问它时,该元素尚未加载。