Page 2 of 2

Re: 怎样去除起点中文的鼠标复制限制

Posted: Apr 16 2010, 03:25
by Bonnie
一处是

Code: Select all

onselectstart="return false;"
另一处是

Code: Select all

 if (document.all) {
 eventBind(document, 'contextmenu', showmenuie5);
 eventBind(document, 'selectstart', OnSelectText);
 eventBind($('bigcontbox'), 'mousedown', ClickFalse);
 } else {
 document.oncontextmenu = function(event) { return showmenuie5(event); }
 document.onselectstart = function(event) { return OnSelectText(event); }
 $('bigcontbox').onmousedown = function(event) { return ClickFalse(event); }
 };

Re: 怎样去除起点中文的鼠标复制限制

Posted: Apr 16 2010, 08:02
by liumailong
Bonnie 我把onselectstart="return false;"过滤掉就行了。谢谢你!!
关于第二处,看代码注示不象是对整个页面的?

Re: 怎样去除起点中文的鼠标复制限制

Posted: Apr 17 2010, 00:39
by Bonnie
应该是针对整个页面弹出自定义菜单和禁止选择文本的,可能调用的两个自定义函数不支持chrome吧,我没有看具体的内容。