当在网上复制内容,粘贴内容到DZ首页发帖时出现
“您没有输入标题或内容,请返回填写。”而无法发表
就其原因,在发表时DZ调用了JS中一个取字符串位置strpos的函数,
但是由于复制的一些HTML代码转换时出现错误,
导致异常而无法发表
最简单的解决方法就是忽略这个错误
把 include/js/bbcode.js中的strpos函数
index = haystack.toLowerCase().indexOf(needle.toLowerCase(), offset);
改为
try{
index = haystack.toLowerCase().indexOf(needle.toLowerCase(), offset);
}catch(e){
return false;
}
OK~~