On 06.09.2012 14:32, 晨风楚 wrote: > > 感谢各位哥哥们的回复。刚刚试过了,发现没有用。 > > 那个网页禁用了鼠标的功能,代码如下: Greasemonkey script to re-enable text selection blocked by this script:
// ==UserScript== // @name Re-enable text selection // @namespace http://www.example.com/ // @description Re-enable text selection // @include * // @version 1 // @grant none // ==/UserScript== document.onmousedown=function(e){ return true; } -- Klaus Johannes Rusch [email protected] http://klausrusch.atmedia.net/ -- You received this message because you are subscribed to the Google Groups "greasemonkey-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/greasemonkey-users?hl=en.
