我在表單提交了我的php網頁。在這個表格上我有複選框。如果滿足兩個條件,則顯示td
如果單擊表單提交按鈕並且複選框被選中,我想隱藏表中的td。
這裏是我的代碼:
<script>
$(document).ready(function()
{
$('#formclick').on('submit'), function(){
$('#check').change(function(){
if(this.checked)
$("#cell").hide();
else
$("#cell").show();
});
});
});
</script>
<table>
<td>something</td>
<td id="cell">this has to be hide wheen formclick submit is clicked and checkbox is checked</td>
<td>something</td>
<td>something</td>
<td>something</td>
<td>something</td>
</table>
一些幫助?
你需要解釋一下你的問題多一點 - 你知道表單在提交時會將用戶重定向到新頁面? – Terry 2014-12-19 01:34:17
其重定向在同一頁上,請參閱下面的註釋 – LoverBugs 2014-12-19 01:50:53