因此,基本上,我正在构建一个phonegap应用程序,并且有一个表格包含一些必须在该应用程序(html)上显示的信息。我设法使登录系统正常工作,但是现在我不知道如何显示从php到我的应用程序的回显。PHP代码:<?php$con = mysqli_connect("localhost","root","", "database") or die("connection error");$id = $_POST['id'];if(isset($_POST['button'])){ $select = mysqli_num_rows(mysqli_query($con, "SELECT * FROM `table` WHERE `id`='$id'")); echo $select;}mysqli_close($con);?>因此,基本上,该过程是用户输入一个ID并单击一个按钮,然后从具有该ID的表行中获取数据并将其显示在应用程序上。也许是与AJAX一起使用的,但我只是找不到使它工作的方法。提前致谢。编辑:仍然无法以html输出回声。这是JavaScript:function yourFunction(id) { if (navigator.connection.type == Connection.NONE) { alert('An internet connection is required to continue'); } else { alert(navigator.connection.type); $.ajax({ url: 'http://localhost/StudyBuddy/StudyBuddy/www/yourScript.php', data: { id: id } success: function (data) { alert(data); $("#data").html(data); }, error: function(data,r,t){ alert(t); } })}}和html代码:<input id="id" type="text" required placeholder=' ID'/></span></td><input class="button" type="submit" id="button" value="ID"></td> <p id="data"></p>
添加回答
举报
0/150
提交
取消