點擊jsp中的「刪除」鏈接後,我有一個確認框。現在問題是成功刪除頁面顯示在同一個窗口中。jquery確認後的jquery彈出窗口
我想在彈出的窗口中顯示它。
我試圖使用javascript onclick(),但它不是wotking。那麼,我該怎麼做?
<script type="text/javascript" src="jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="jconfirmaction.jquery.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.ask-plain').click(function(e) {
e.preventDefault();
thisHref = $(this).attr('href');
if(confirm('Delete this record?')) {
window.location = thisHref;
}
});
$('.ask-custom').jConfirmAction({question : "Anda Yakin?", yesAnswer : "Ya", cancelAnswer : "Tidak"});
$('.ask').jConfirmAction();
});
</script>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<SCRIPT TYPE="text/javascript">
<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
href=mylink;
else
href=mylink.href;
window.open(href, windowname, 'width=750,height=430,scrollbars=no');
return false;
}
//-->
</SCRIPT>
---Delete image
<td width="3%" align="left"><a href="cir_delete.jsp?cir_id=<%=rs.getString("cir_id")%>" class="ask"><IMG SRC="12.png" ALT="Delete" BORDER="0"></a></td>
感謝名單
當你點擊刪除
我沒有看到任何代碼? – Ties 2010-08-02 08:41:46
爲什麼我感覺這個問題與[jconfirm-form-submit-returns-incorrect-value-to-php]類似的問題(http://stackoverflow.com/questions/3385574/jconfirm-form-submit-returns -incorrect-value-to-php)。一些功課? – Reigel 2010-08-02 08:50:21
這是有點不同 – maas 2010-08-02 09:35:51