0

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

这是我的代码:

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

请帮助我。

4

1 回答 1

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>
于 2012-04-29T22:06:51.190 回答