我有一個叫做input的div,我該如何顯示這個div旁邊的jAlert?如何將jAlerts與div關聯?
jAlert:http://www.smooka.com/blog/2009/02/22/jalert-jquery-alert-box-plugin/
我有一個叫做input的div,我該如何顯示這個div旁邊的jAlert?如何將jAlerts與div關聯?
jAlert:http://www.smooka.com/blog/2009/02/22/jalert-jquery-alert-box-plugin/
您可以使用下面的代碼示例手動設置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);
希望這會對你有所幫助。如果您還有其他問題,請告訴我。
試試這個:
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