我有一個頁面上有一個發票負載,我希望能夠刪除發票,然後看到它已被刪除。在運行另一個頁面時刷新HTML PHP頁面?
我正在使用當前的(bastardizing其他代碼,因爲我真的不知道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頁面正在工作),但我真的可以做的事情就是刷新我所在的頁面,以便刪除的發票消失並且表單再次爲空。
想法?
'onclick =「blahblah; form1.reset()」'? –
@MarcB你會把輸入與輸入的id?即onclick =「form1.action ='deleteinvoice.php'; target ='my-iframe'; from1.reset()」?這將重新排列事物的表單方面,但仍不確定刷新頁面以顯示發票已被刪除? – franglais
有什麼特別的原因讓你爲什麼使用iframe? –