form表單的target,當iframe設置為隱藏時,可以實現當前頁表單提交而部進行跳轉刷新,代碼如下:
<form action="提交的action" method="post" target="myIframe">
.....................
</form>
<iframe name="myIframe" style="display:none"></iframe>
提交到action后,action返回一串javascript語句
js:
String script = "<script>alert('hello!');</script>";
response.getOutputStream().write(script.getBytes("utf-8"));
alert("hello")將在當前頁執行,原理是form提交后的結果在target指定的iframe里執行,iframe已經隱藏了,這樣提交后的效果就和無刷新的效果一樣。