jQuery submit() 方法 jQuery 事件方法 實(shí)例 當(dāng)提交表單時(shí),顯示警告框: $("form").submit(function(){ alert("Submitted"); }); 嘗試一下 ? 定義和用法 當(dāng)提交表單時(shí),會(huì)發(fā)生 submit 事件。 該事件只適用于 <form> 元素。 submit() 方法觸發(fā) subm...
http://m.hgci.cn/jquery/event-submit.htmljQuery mouseout() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針離開 <p> 元素時(shí),設(shè)置背景色為灰色: $("p").mouseout(function(){ $("p").css("background-color","gray"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針離開被選元素時(shí),會(huì)發(fā)生 mouseout 事件。...
http://m.hgci.cn/jquery/event-mouseout.htmljQuery delay() 方法 jQuery 效果方法 實(shí)例 對(duì)不同的 <div> 元素設(shè)置延遲: $("button").click(function(){ $("#div1").delay("slow").fadeIn(); $("#div2").delay("fast").fadeIn(); }); 嘗試一下 ? 定義和用法 delay() 方法對(duì)隊(duì)列中的下一項(xiàng)的執(zhí)行設(shè)置延遲。...
http://m.hgci.cn/jquery/eff-delay.htmljQuery select() 方法 jQuery 事件方法 實(shí)例 當(dāng)文本域中的文本被選擇時(shí),顯示提示消息: $("input").select(function(){ alert("Text marked!"); }); 嘗試一下 ? 定義和用法 當(dāng) textarea 或文本類型的 input 元素中的文本被選擇(標(biāo)記)時(shí),會(huì)發(fā)生 s...
http://m.hgci.cn/jquery/event-select.htmljQuery mousemove() 方法 jQuery 事件方法 實(shí)例 獲得鼠標(biāo)指針在頁面中的位置: $(document).mousemove(function(event){ $("span").text(event.pageX + ", " + event.pageY); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針在指定的元素中移動(dòng)時(shí),就會(huì)發(fā)生 mousemove ...
http://m.hgci.cn/jquery/event-mousemove.htmljQuery clearQueue() 方法 jQuery 效果方法 實(shí)例 停止隊(duì)列中的剩余函數(shù): $("button").click(function(){ $("div").clearQueue(); }); 嘗試一下 ? 定義和用法 clearQueue() 方法從尚未運(yùn)行的隊(duì)列中移除所有項(xiàng)目。請(qǐng)注意當(dāng)函數(shù)開始運(yùn)行時(shí),它會(huì)一直...
http://m.hgci.cn/jquery/eff-clearqueue.htmljQuery scroll() 方法 jQuery 事件方法 實(shí)例 對(duì)元素滾動(dòng)的次數(shù)進(jìn)行計(jì)數(shù): $("div").scroll(function(){ $("span").text(x+=1); }); 嘗試一下 ? 定義和用法 當(dāng)用戶滾動(dòng)指定的元素時(shí),會(huì)發(fā)生 scroll 事件。 scroll 事件適用于所有可滾動(dòng)的元素和 windo...
http://m.hgci.cn/jquery/event-scroll.htmljQuery mouseleave() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針離開 <p> 元素時(shí),設(shè)置背景色為灰色: $("p").mouseleave(function(){ $("p").css("background-color","gray"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針離開被選元素時(shí),會(huì)發(fā)生 mouseleave 事...
http://m.hgci.cn/jquery/event-mouseleave.htmljQuery resize() 方法 jQuery 事件方法 實(shí)例 對(duì)瀏覽器窗口調(diào)整大小進(jìn)行計(jì)數(shù): $(window).resize(function(){ $('span').text(x+=1); }); 嘗試一下 ? 定義和用法 當(dāng)調(diào)整瀏覽器窗口大小時(shí),發(fā)生 resize 事件。 resize() 方法觸發(fā) resize 事件,或規(guī)定當(dāng)...
http://m.hgci.cn/jquery/event-resize.htmljQuery mouseenter() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針進(jìn)入 <p> 元素時(shí),設(shè)置背景色為黃色: $("p").mouseenter(function(){ $("p").css("background-color","yellow"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針穿過(進(jìn)入)被選元素時(shí),會(huì)發(fā)生 ...
http://m.hgci.cn/jquery/event-mouseenter.html抱歉,暫時(shí)沒有相關(guān)的微課
w3cschool 建議您:
抱歉,暫時(shí)沒有相關(guān)的視頻課程
w3cschool 建議您:
抱歉,暫時(shí)沒有相關(guān)的教程
w3cschool 建議您:
jQuery submit() 方法 jQuery 事件方法 實(shí)例 當(dāng)提交表單時(shí),顯示警告框: $("form").submit(function(){ alert("Submitted"); }); 嘗試一下 ? 定義和用法 當(dāng)提交表單時(shí),會(huì)發(fā)生 submit 事件。 該事件只適用于 <form> 元素。 submit() 方法觸發(fā) subm...
http://m.hgci.cn/jquery/event-submit.htmljQuery mouseout() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針離開 <p> 元素時(shí),設(shè)置背景色為灰色: $("p").mouseout(function(){ $("p").css("background-color","gray"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針離開被選元素時(shí),會(huì)發(fā)生 mouseout 事件。...
http://m.hgci.cn/jquery/event-mouseout.htmljQuery delay() 方法 jQuery 效果方法 實(shí)例 對(duì)不同的 <div> 元素設(shè)置延遲: $("button").click(function(){ $("#div1").delay("slow").fadeIn(); $("#div2").delay("fast").fadeIn(); }); 嘗試一下 ? 定義和用法 delay() 方法對(duì)隊(duì)列中的下一項(xiàng)的執(zhí)行設(shè)置延遲。...
http://m.hgci.cn/jquery/eff-delay.htmljQuery select() 方法 jQuery 事件方法 實(shí)例 當(dāng)文本域中的文本被選擇時(shí),顯示提示消息: $("input").select(function(){ alert("Text marked!"); }); 嘗試一下 ? 定義和用法 當(dāng) textarea 或文本類型的 input 元素中的文本被選擇(標(biāo)記)時(shí),會(huì)發(fā)生 s...
http://m.hgci.cn/jquery/event-select.htmljQuery mousemove() 方法 jQuery 事件方法 實(shí)例 獲得鼠標(biāo)指針在頁面中的位置: $(document).mousemove(function(event){ $("span").text(event.pageX + ", " + event.pageY); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針在指定的元素中移動(dòng)時(shí),就會(huì)發(fā)生 mousemove ...
http://m.hgci.cn/jquery/event-mousemove.htmljQuery clearQueue() 方法 jQuery 效果方法 實(shí)例 停止隊(duì)列中的剩余函數(shù): $("button").click(function(){ $("div").clearQueue(); }); 嘗試一下 ? 定義和用法 clearQueue() 方法從尚未運(yùn)行的隊(duì)列中移除所有項(xiàng)目。請(qǐng)注意當(dāng)函數(shù)開始運(yùn)行時(shí),它會(huì)一直...
http://m.hgci.cn/jquery/eff-clearqueue.htmljQuery scroll() 方法 jQuery 事件方法 實(shí)例 對(duì)元素滾動(dòng)的次數(shù)進(jìn)行計(jì)數(shù): $("div").scroll(function(){ $("span").text(x+=1); }); 嘗試一下 ? 定義和用法 當(dāng)用戶滾動(dòng)指定的元素時(shí),會(huì)發(fā)生 scroll 事件。 scroll 事件適用于所有可滾動(dòng)的元素和 windo...
http://m.hgci.cn/jquery/event-scroll.htmljQuery mouseleave() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針離開 <p> 元素時(shí),設(shè)置背景色為灰色: $("p").mouseleave(function(){ $("p").css("background-color","gray"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針離開被選元素時(shí),會(huì)發(fā)生 mouseleave 事...
http://m.hgci.cn/jquery/event-mouseleave.htmljQuery resize() 方法 jQuery 事件方法 實(shí)例 對(duì)瀏覽器窗口調(diào)整大小進(jìn)行計(jì)數(shù): $(window).resize(function(){ $('span').text(x+=1); }); 嘗試一下 ? 定義和用法 當(dāng)調(diào)整瀏覽器窗口大小時(shí),發(fā)生 resize 事件。 resize() 方法觸發(fā) resize 事件,或規(guī)定當(dāng)...
http://m.hgci.cn/jquery/event-resize.htmljQuery mouseenter() 方法 jQuery 事件方法 實(shí)例 當(dāng)鼠標(biāo)指針進(jìn)入 <p> 元素時(shí),設(shè)置背景色為黃色: $("p").mouseenter(function(){ $("p").css("background-color","yellow"); }); 嘗試一下 ? 定義和用法 當(dāng)鼠標(biāo)指針穿過(進(jìn)入)被選元素時(shí),會(huì)發(fā)生 ...
http://m.hgci.cn/jquery/event-mouseenter.html抱歉,暫時(shí)沒有相關(guān)的文章
w3cschool 建議您: