我正在使用jQuery的.show()函數在用戶按下刪除按鈕時顯示一個彈出窗口。.show()按鈕出現在其他東西之前
代碼除了一件事情以外完美無缺。兩個按鈕出現在div的其餘部分之前,文本出現。有誰知道爲什麼或者如果有解決這個問題?
HTML(#DELETE別處嵌套)
<div id="popupbgitembg">
<ul class="popupbgitems">
<li>
Are you sure you want to delete?
</li>
<li></li>
<li>
<asp:Button ID="butdelete" runat="server" Text="Delete" Font-Size="11px"/>
<asp:Button ID="butcancel" runat="server" Text="Cancel" Font-Size="11px"/>
</li>
</ul>
</div>
jQuery的
function popup() {
$("#popupbg").animate({ opacity: ".8" });
$("#delete").click(
function() {
$("#popupbg, #popupbgitembg").show('fast')
});
$("#butdelete, #butcancel").click(
function() {
$("#popupbg, #popupbgitembg").hide('medium')
});
}
你可以發佈截圖和css以供參考嗎? – 2012-08-10 03:34:52