DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery.holdReady()方法用法實例教程
jQuery.holdReady()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery.holdReady()方法用法。分享給大家供大家參考。具體分析如下:

此方法可以暫停或者恢復jQuery.ready()事件。
調用此方法可以延遲jQuery的ready事件,也就是說盡管文檔已經加載完成,也不會執行ready事件處理方法。
可以多次調用jQuery.holdReady()方法,以延遲jQuery的ready事件,當滿足一定條件時,再通過將此方法的參數設置為false,一一解除延遲。方法一般用於動態腳本加載,知道腳本加載完成然後再通過將此方法的參數設置為false,解除對jQuery.ready()事件延遲。

語法結構:
代碼如下:jQuery.holdReady(hold)

參數列表:
參數 描述 hold 如果值為true,則會延遲jQuery.ready()事件。
如果值為false,則會解除對jQuery.ready()事件延遲。

如果值為false,則會解除對jQuery.ready()事件延遲。

實例代碼:

實例一:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
jQuery.holdReady(true);
$(document).ready(function(){
  alert("我不會被彈出");
})
</script>
</head>
<body>
  
</body>
</html>

在以上代碼中,由於添加了 jQuery.holdReady(true),所以盡管文檔加載完成,也不會執行ready()中的函數。
實例二:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.com/" />
<title>博客園</title>
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
</head>
<body>
<button id="first">點擊測試彈出</button>
<button id="second">解除延遲</button>
<script type="text/javascript">
jQuery.holdReady(true) 
$(document).ready(function(){
  $("#first").click(function(){
    alert("我不會被彈出");
  })
})
$("#second").click(function(){
  jQuery.holdReady(false);
})
</script>
</body>
</html>

當點擊解除延遲之後,就可以彈出了。

希望本文所述對大家的jQuery程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved