2013-03-17 70 views

回答

2

您可以使用下面的代碼示例手動設置jAlert的CSS:你必須得到 1.首先使用jAlert庫的uid。 2.然後只需設置jalert_overlay_元素的CSS。

if (uid == undefined) 
    { //generate an unique ID 
     var d = new Date(); 
     var uid = d.getMonth()+""+d.getDate()+""+d.getHours()+""+d.getMinutes()+""+d.getSeconds(); 

     } 

$("#jalert_overlay_"+uid).css({ 
               top: 0, 
               left: 0, 
               width: overlayWidth, 
               height: overLayHeight, 
               position: "fixed", 
               display: "block", 
               background: "#000", 
               zIndex: "1000" 
              }) 
       $("#jalert_overlay_"+uid).css("opacity", 0.7); 

希望這會對你有所幫助。如果您還有其他問題,請告訴我。

0

試試這個:

var divInput= $("#input").position(); 
$("#jAlertId").css('position','absolute') //if position is not absolute already 
$("#jAlertId").css('top',divInput.top+2).css('left',divInput.left+2); //+2 or whatever figure u need