js確認刪除對話方塊適用於a標籤及submit,jssubmit
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>js確認刪除對話方塊</title> </head> <body> <p> <script language="javascript"> function delcfm() { if (!confirm("確認要刪除?")) { window.event.returnValue = false; } } </script> <a href="http://www.bkjia.com/" onClick="delcfm()">刪除</a></p> <p>代碼說明:單擊刪除的超連結後將執行delcfm()函數,在對話方塊中,如果點擊“確定”,函數將返回true值,就將頁面轉到<a>標籤中的連結頁面執行刪除的頁面;如果點擊“取消”,函數將返回false值,<a>標籤將不轉到執行刪除的頁面。</p> <p>尋找更多代碼,請訪問:<a href=http://www.bkjia.com target="_blank">幫客之家</a></p> </body> </html>
用JS怎在點刪除時彈出“確定刪除?”這個對話方塊?
<script>
function del(){
if(confirm("確認刪除嗎")){
alert("yes");
}
else{
alert("no")
return;
}
}
</script>
<html>
<input type="button" value="del" onclick="del();">
</html>
JS 刪除某個資訊的時,點擊確定按鈕 出現確認是否刪除對話方塊,怎實現
function fn(){
if(confirm("確定刪除嗎")){
location.href="確認後跳轉的頁面";
}else{
location.href="取消後跳轉的頁面";
}
}