1.禁用右键菜单
代码如下:
$(document).ready(function(){
$(document).bind("contextmenu",function(e){
return false;
});
});
2.让字体闪烁
代码如下:
jQuery.fn.flash = function( color, duration )
{
var current = this.css( 'color' );
this.animate( { color: 'rgb(' + color + ')' }, duration / 2 );
this.animate( { color: current }, duration / 2 );
}
$( '#someid' ).flash( '255,0,0', 1000 );
3.准备文档替换方案
代码如下:
$(function()...[ 查看全文 ]