Jquery blur和focus事件無法生效
$(function(){ alert("页面生效"); $(".login_shopcart").blur(function(){ alert("blur生效"); $(".shopcart_img").attr("src","myimg/shopcart_img.png"); $("#ShopCart_num").show(); }); $(".login_shopcart").focus(function(){ alert("focus生效"); $(".shopcart_img").attr("src","myimg/Login.png"); $("#ShopCart_num").hide(); }); });
程式碼如上:第一個頁面alert()能夠生效,但是blur和focus無法生效。我用的是Jquery1.9.1版。
求大神指點
頁面HTML呢? 得觸發 .login_shopcart 這個元素才行
這段程式碼是寫在引入的JS檔案裡面
#你把HTML也發出來呀。不然咋知道是你JS的問題還是你HTML的問題
說不定你頁面壓根就沒 class="login_shopcart" 的 物件
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Insert title here</title> <script type="text/javascript"> $(function(){ alert("页面生效"); $(".login_shopcart").blur(function(){ alert("blur生效"); $(".shopcart_img").attr("src","myimg/shopcart_img.png"); $("#ShopCart_num").show(); }); $(".login_shopcart").focus(function(){ alert("focus生效"); $(".shopcart_img").attr("src","myimg/Login.png"); $("#ShopCart_num").hide(); }); $(document).ready(function(){ alert("document生效"); $(".login_shopcart").ready(function(){ }); }); }); </script> </head> <body> <div class="login_shopcart" style="position:fixed;bottom:0px;right:100px;"> <p style="position: absolute;padding: 10px 0 0 40px;color:white;" id="ShopCart_num">0</p> <img alt="#" src="myimg/ShopCart.png" class="shopcart_img"> </div> </body> </html>
而且div元素沒有blur和focus事件
Jquery導入也沒辦法運行
拜託,,div的話,用
$(function () { alert("页面生效"); $(".login_shopcart").hover(function () { alert("blur生效"); $(".shopcart_img").attr("src", "myimg/shopcart_img.png"); $("#ShopCart_num").show(); }, function () { alert("focus生效"); $(".shopcart_img").attr("src", "myimg/Login.png"); $("#ShopCart_num").hide(); }); });
我不知道你是要滑鼠懸浮還是滑鼠點選
想法:取得焦點 login_shopcart 直接綁定click
失去焦點 document綁定click,讓login_shopcart點選無效
部分程式碼範例:##
$(document).click(function(){ $("#login_shopcart").click(function(){ return false; }); $(".shopcart_img").attr("src","myimg/shopcart_img.png"); $("#ShopCart_num").show(); });################################'##'##'#'##幫助幫助'22 部分代碼範例#感謝各位大神~~~找到原因了。 DIV確實無法使用blur和focus~~~改成mouseover 和mouseout生效了~~###### ###
以上是Jquery中關於blur和focus事件無法生效的解決辦法的詳細內容。更多資訊請關注PHP中文網其他相關文章!