>  기사  >  웹 프론트엔드  >  jquery 팝업박스 사용예(2)_jquery

jquery 팝업박스 사용예(2)_jquery

WBOY
WBOY원래의
2016-05-16 17:24:221084검색

두 번째 상황은 팝업 상자에 관한 것입니다. 닫기 버튼이 없지만 다른 곳을 클릭하면 팝업 상자가 사라집니다. 이는 또한 상위 수준에 더 높은 수준을 추가하려면 js를 사용해야 합니다. 다음 내용에 포함되지 않도록 팝업 상자의 요소를 지정하세요.

코드 복사 코드는 다음과 같습니다.



询盘分配




  • 询盘详情

  • 联系人

  • 所在地

  • 来源








코드:




코드 복사

코드는 다음과 같습니다.

// JavaScript 문서 $(function(){ var $window = $(window), $doc = $(document), $body = $('body'); //js 정보 관리자가 추가하고 삭제한 코드var tabLi=$(".tabPanel").find("li")
tabLi.hover(function(){
$(this).addClass(" hover").siblings().removeClass("hover");
},function(){})
$(window).scroll(function() {
var pwdTips =$(". pwdTips");
var height=pwdTips.height();
var width=pwdTips.width();
var bodyHieght=$(window).height();
var bodyWidth=$ (window).width();
if(!pwdTips.is(":hidden")){
pwdTips.css({
position: "fixed",
top: (bodyHieght- 높이)/2,
왼쪽:(bodyWidth-width)/2
})
}
})

var bgShadow = function(zindex) {
zindex = zindex?zindex:999;
var _bg = $('div.pwdTipsBg'),
bg_html = '
'
(_bg.length === 0 ) {
_bg = $(bg_html);
}
$body.append(_bg)
_bg.css({
위치: '절대 ',
상단 : ' 0px',
왼쪽 : '0px',
너비 : $window.scrollLeft() $window.width() 'px',
높이 : $doc.height (),
'z -index' : zindex
});
return _bg;
}

varbindClick = function(obj,handlerEvent){
obj .bind("click",function (e){
e.preventDefault();
bgShadow(1001);
var select=$(this).attr('contentid');
var onLineId=$(this).attr('id');
var pwdTips=$(select)
if(handlerEvent!=null)
{
handlerEvent($(this)) ;
}
pwdTips.show();
pwdTips.find(".closeBtn,.diaSmtRst").click(function(){
pwdTips.hide();
var _bg = $('div.pwdTipsBg' );
_bg.remove();
})
pwdTips.find('#onLineId').val(onLineId); );
};
var show=tabLi.find("dt"),
addPanelBtn=$(".addPanelBtn"),
clickBtn=$(".clickBtn"); 사람에게 할당된 버튼
var setValue= function(obj){
if($(obj).is('.addPanelBtn'))
{
$('#opename').attr( '값',"") ;
$('#pwdRest').find('#userName').show()
}
else
{
$('# pwdRest').find(' #userName').hide();
$('#openname').attr('value',obj.text())
$("input.shareId" ).attr('value' ,obj.attr('id')) //사람의 팝업 상자에 할당된 id 값을 가져옵니다.
}
}
$(function(){
bindClick(show,setValue);
bindClick(addPanelBtn,setValue);
bindClick(clickBtn,setValue);
})
/*세부정보 팝업 상자 시작*/ var listInfo=$(".listName a" );
listInfo.click(function(e){
e.preventDefault();
var winDiaBox=$(this).closest("li") .find(".winDiaBox");
$(".winDiaBox").hide().closest('li').removeAttr('style')
if(winDiaBox.is(':visible) ')) {
winDiaBox.hide ();
} else {
winDiaBox.show().parent("li").siblings("li").removeAttr('style')
.find(".winDiaBox").hide();
$(this).closest("li").css("z-index",4);
}
return false;
})
$( ".winDiaBox").click(function(){return false;})
$(document).click(function(){
$(".winDiaBox" ).hide();
$ (".winDiaBox").parent().removeAttr("style")
})
/*세부정보 팝업 상자 끝*/
})


세부 팝업 상자는 루프와 함께 표시되므로 js를 사용하여 각 루프 목록의 위치에 따라 팝업 상자를 배치할 필요성이 줄어듭니다.
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.