首頁 > web前端 > js教程 > 主體

動態標籤 懸停效果 延遲載入範例程式碼_jquery

WBOY
發布: 2016-05-16 17:13:18
原創
1086 人瀏覽過

----------------------對於動態的標籤綁定事件-​​-------------------- ---

複製程式碼 程式碼如下:

var outTimer;//執行時間


var outTimer;//執行時間var upTimer;//執行時間
var sqDiv = $("#tm");//要顯示的div
var test="";//標識,為了將滑鼠移到顯示的div上時,div不會消失
var dd = "";//劃過某一字段傳的值
function test1(){
$("#tm").empty();//現將div清空
$.ajax({ //往裡加資料
type:"post",
url:"/webmodule/constructionDecision/BaseCD/getCommunityInfo.do?stCode =" dd,
dataType:"json",
async:false,
success:function(data){
var td="";
for(var i=0;i td ="" data[i].name "";
}
$("#tm").append(td);
}
});
$("#tm").show();
}

function test2 (){//隱藏div的方法
if(test ==""){
$("#tm").hide();
}
}
$(" #cityTable a").die().live('mouseover mouseout', function(event) { //給動態標籤綁定事件

if(event.type=='mouseover'){ //移上時
clearTimeout(outTimer);//先清空移出的時間,這樣能避免滑鼠劃過就執行函數,減輕伺服器的壓力
dd=$(this).attr("id");
upTimer = setTimeout(test1, 500);//0.5秒後再執行
}
if(event.type=='mouseout'){
sqDiv.hover(
function( ){
test = "on";//說明滑鼠在顯示的d​​iv上
},function(){
test = "";
test2();
});
clearTimeout(upTimer);
outTimer = setTimeout(test2, 500);
}
});

----------- -----------------非動態標籤(查詢資料)-------------------------- --------- 複製程式碼
程式碼如下:


//hoverDuring滑鼠經過的延遲時間
//outDuring 滑鼠移出的延遲時間
//hoverEvent 滑鼠經過執行的方法
//outEvent 滑鼠移出執行的方法
$( function() {
$.fn.hoverDelay = function(options) {
var defaults = {
hoverDuring :200,
outDuring :200,
hoverEvent : function(() { },
outEvent : function() {
$.noop();
}
};
var sets = $.extend(defaults, options || { });
var hoverTimer, outTimer;
return $(this).each( function() {
$(this).hover( function() {
clearTimeout(outTimer);
hoverTimer = setTimeout(sets.hoverEvent, sets.hoverDuring);
}, function() {
clearTimeout(hoverTimer);
outTimer = setTimeout(sets.outEvent, sets.outDuring) ; });
});
}

複製程式碼


程式碼如下>

//$("#sosoFod h3").each( function() {
$("#sosoweb").each( function() {
var test = ""; //當test為空時,滑鼠移到欄位顯示div,移出隱藏div
var that = $(this);
var id = that.attr("id");
var div = $("#tm");
div.css("position", "absolute");//讓這層可以絕對定位
that.hoverDelay( {
outDuring :1000,
hoverEvent : function() {
div.css("display", "block");
var p = that.position(); //取得這個元素的left和top
var x = p .left that.width();//取得這個浮動層的left
var docWidth = $(document).width();//取得網頁的寬
if (x > docWidth - div.width( ) - 20) {
x = p.left - div.width();
}
div.css("left", x);
div.css("top", p .top);
//$("#tm").show();

},
outEvent : function() {

$("#tm" ).hoverDelay( {
outDuring :1000,
hoverEvent : function() {
test = "on";
$("#tm").show();
},
outEvent : function() {
test="";
$("#tm").hide();
}
});
if(test== ""){
$("#tm").hide();
}
}
}); });
相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!