- 金錢
- 7346
- 威望
- 577
- 貢獻值
- 0
- 推廣值
- 0
- 在線時間
- 156 小時
- 最後登錄
- 2024-10-27
- 主題
- 86
- 精華
- 0
- 閱讀權限
- 30
- 註冊時間
- 2011-3-5
- 帖子
- 139
TA的每日心情 | 開心 2024-10-15 21:32 |
---|
簽到天數: 1627 天 [LV.Master]伴壇終老 - 推廣值
- 0
- 貢獻值
- 0
- 金錢
- 7346
- 威望
- 577
- 主題
- 86
|
樓主
發表於 2014-11-15 20:51:55
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
} |
|
|