Mobile Device(file://..) Server
index.html <--JSON--- post.php
main.js
sencha_.js or Jquery_.js
情况类似于上面,所有的文件(js,html)都是通过PhoneGap在移动设备上的。(file://.../www/index.html...)它将在WebView上展示。
main.js将调用$.ajax()或Ext.Ajax.request()从服务器接收json数据。(无论POST/GET)
有可能吗?是否
AJAX代码:
<script type="text/javascript">
function doCalc(){
var roomX = $('#room_str').val();
var heightX = $('#height_str').val();
var widthX = $('#width_str').val();
var prodid = $('#prodid
假设我在web上有一个网页,这个网页有许多带有ids的元素。如何使用javascript获取这些元素?我在jQuery中使用了这段代码:
$.get(websiteUrl, {}, function(results){
//alert(results); // will show the HTML from anotherPage.html
console.log($(results).find("bookId").html()); // show "bookId" div in results
});
但我得到了错误:
XML
潜入一个新项目,尝试自学JSON、PHP、MySQL和Morris.js。
一些背景知识,了解我正在努力实现的目标。
我有一个PHP文件,它转到一个网页并获取JSON数据。(现在我只是将它设置为获取所有内容)。然后,将抓取的数据放入mysql数据库中。我现在已经设置了一个Cron作业,每隔1分钟运行一次这个文件,这样我就可以获得一些流入这个数据库的数据。
<?php
//connect to mysql db
$con = mysql_connect('localhost','user','password',"") or