我尝试过jqtouch,但是我无法在Safari中获取使用php的表单。当我在Safari中按提交时没有任何反应,但它在Explorer中有效。我试图将输入类型从提交更改为按钮,但它没有帮助。我该如何更改我的代码?
<?php
function test1()
{
if (isset($_POST['submit'])){
$test = $_POST['test'];
echo $test;
}
}
?>
<form action="#" method="post" class="form">
<table>
<br />
<tr>
<td><label for="test">Test:</label></td>
</tr>
<tr>
<td><input type="text" name="test"></td>
</tr>
<tr>
<td><br /><input type="submit" name="submit" class="submit" value="Press"></td>
</tr>
</table>
</form>