gavintom
|
分享:
▲
▼
<script language="JavaScript"> function confirmLink(theLink, theSqlQuery) { // Confirmation is not required in the configuration file // or browser is Opera (crappy js implementation) if (confirmMsg == '' || typeof(window.opera) != 'undefined') { return true; }
var is_confirmed = confirm(confirmMsg + ' :\n' + theSqlQuery); if (is_confirmed) { theLink.href += '&goal=3' <------------ 改好了 }
return is_confirmed; } var confirmMsg = '您確定要 ' </script>
/============================= <A href="sql_tool.php?num=<? echo $arr[$i][0]; ?>" onClick="return confirmLink(this, 'DELETE FROM 'post' WHERE 'p_NO' = '<? echo $arr[$i][0]; ?>'')">[刪除]</a>
//==============================
問題1. 我這樣子改完後 按"刪除" 一樣不會跳出小框框出現提示語(沒yes or no可選)! 2. 若我現在是在 a.php這寫 而我按完 "刪除" 後就會跳到sql_tool.php這頁對吧!
3. 另外呀..我在script 加了'&goal=3'這個 但我連結出來時 sql_tool.php 沒有goal=3這個耶..而num=xx這是有出現
請指教
|