我有一个页面上有大量发票,我希望能够删除发票,然后看到它已被删除。
我目前正在使用的是(因为我不太了解 HTML / PHP,所以将其他代码混为一谈......!)
<form name="form1" action="deleteinvoice.php" method="post">
<input name="invoiceid" type="number" size="20"/>
<input id="input"
type='submit'
value='Delete'
onclick="form1.action='deleteinvoice.php';target='my-iframe'"
class="button save-big"
disabled="disabled" >
<input type="checkbox"
name="agree"
value="yes"
onclick="input.disabled = !this.checked" />Confirm you have the correct invoice number
</form>
<iframe name="my-iframe" src="deleteinvoice.php" style="display:none"></iframe>
就删除发票而言,这工作正常(所以我知道 deleteinvoice.php 页面正在工作),但我真正可以做的是刷新我所在的页面,以便删除的发票消失并且表格又是空白。
想法?