Jquery移动表单不会提交也不会将输入发布到php脚本

时间:2012-04-29 21:11:55

标签: php android jquery jquery-mobile

嗨,我几乎得到了一切,但我不知道什么是错的。我有两页。 search.php:使用jquery允许选择产品的类型并将输入提交到index.php :(没有jquery只是简单的html / php页面)显示我的数据库的结果 当我点击提交按钮,一个加载窗口弹出,没有任何反应!当我在没有jquery的情况下对search.php进行编码时,我已经有了这个工作但在android浏览器中看起来很难看:/

这是我的代码:

http://textuploader.com/?p=6&id=dmLX

请帮帮我。

1 个答案:

答案 0 :(得分:0)

在您的“index.php”页面中,您忘记了打开的正文标记。此外,你的index.php必须与jquerymobile结构“兼容”:在你的第一个div上添加一个属性data-role = page。就像这样:

<body>
<div data-role="page" class="type-interior">
<?php while($myproducts = mysql_fetch_array($result)) {?> 
<table width="800" height ="479" border="0" background="includes/images/result_box.png">
  <tr>
    <td id="Prix"><?php echo $myproducts['Product_Price']." Dollars" ;?> <p>&nbsp;</p></td>
  </tr>
</table>
</div>
<?php }  ?>
</body>