1

实际上,当我单击提交按钮时,我使用桌面和 ipad..在桌面浏览器中 ipad 浏览器中的页面应该被刷新......假设在桌面浏览器中我创建了一个文件 test1.php

<input type="submit" value= "submit"/>

当我单击提交按钮时,ipad 中的页面应该会刷新,即 refresh.php

我试过下面的代码

<a href="rand_num.php" onclick="window.open(this.href, this.href); return false">link</a>

这在桌面浏览器中工作正常,但在 ipad 中同样没有得到刷新

4

1 回答 1

0

如果您使用提交按钮只是为了刷新页面,您可以使用:

<form target='test1.php'>
    <input type='text' name='text1'>
    <input type='button' value='submit'>
</form>

这将刷新页面,例如 test1.php?text1=[whatever your text may be] 然后您可以使用 php 将值检索为 $_GET['text1']

于 2013-09-26T08:31:47.117 回答