实际上我在桌面浏览器中使用桌面和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中同样没有刷新
答案 0 :(得分:0)
如果您使用提交按钮只是为了刷新页面,您可以使用:
<form target='test1.php'>
<input type='text' name='text1'>
<input type='button' value='submit'>
</form>
这将刷新页面,转到,让我们说test1.php?text1 = [无论你的文字是什么] 然后,您可以使用php将值检索为$ _GET ['text1']