Chinaunix首页 | 论坛 | 博客
  • 博客访问: 220590
  • 博文数量: 46
  • 博客积分: 2598
  • 博客等级: 少校
  • 技术积分: 499
  • 用 户 组: 普通用户
  • 注册时间: 2008-09-02 09:49
文章分类

全部博文(46)

文章存档

2011年(5)

2010年(19)

2009年(16)

2008年(6)

分类: LINUX

2010-02-19 23:01:15

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(){
        //document is ready do something
});

4.检测browser
// mozilla
if (jQuery.browser.mozilla)
{}
 // Safari
 if( $.browser.safari )
 {
 //do something
 }
 //Above IE6
 if ($.browser.msie && $.browser.version > 6 )
 {
 //do something
 }
 // IE6 and below
 if ($.browser.msie && $.browser.version <= 6 )
{ //do something }

5.检查存在的元素
 if ($("#someDiv").length) {
     //yes it does ,do something
 }

阅读(379) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~