View Single Post
ישן 12-11-07, 01:33   # 1
fulsyp
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Jul 2007
הודעות: 77

fulsyp לא מחובר  

הינה:
קוד:
function conf(){
var isConfirmed = confirm('האם אתה בטוח?');
if(isConfirmed){
return true;
}
form1.reset();
return false;
}
וזה הקוד של הטופס:
HTML קוד:
<form action="...php?act=deletecm" method="post" id="form1" onsubmit="return conf();">
  <table class="pmt">
   <tr>
    <th>כותרת</th>
    <th>תאריך שליחה</th>
    <th>מחיקה</th>
   </tr>  <tr>
   <td>123123</td>
   <td>11/11/2007, 20:05</td>
   <td><input type="checkbox" name="del[8]" value="1" class="delBox" /></td>
  </tr>  <tr>
   <td>123123</td>
   <td>11/11/2007, 20:05</td>
   <td><input type="checkbox" name="del[9]" value="1" class="delBox" /></td>
  </tr>  <tr>
   <td>מעפן!</td>
   <td>11/11/2007, 18:41</td>
   <td><input type="checkbox" name="del[2]" value="1" class="delBox" /></td>
  </tr>  <tr>
   <td>זה רק דני</td>
   <td>11/11/2007, 18:45</td>
   <td><input type="checkbox" name="del[3]" value="1" class="delBox" /></td>
  </tr>  <tr>
   <td colspan="4" align="left"><input type="button" name="submit" value="מחיקה" /></td>
  </tr></table></form>