iPhone应用程序将数据发送回网络服务器

时间:2013-01-31 18:01:37

标签: iphone barcode barcode-scanner zbar-sdk zbar

你的一点时间。我必须开发一个从网页调用的条形码应用程序。现在我已经编写了用于调用应用程序的JavaScript。应用程序完成条形码阅读后,我必须返回我的网页,条形码数据应保存在网页的某个文本框中。

我的烦恼是: - >当网页触发应用程序时,我将页面发送到后台。现在,当应用程序返回数据时,如何在不刷新页面的情况下使用内容填充网页的文本框对象。 (页面内还有其他数据,也登录了luser)

1 个答案:

答案 0 :(得分:0)

Here goes the page which calls the app..<html>
<head>



<script src="/Users/User_admin/Downloads/appl/src/main/webapp/static/scripts/gtx/jquery.min.js"></script>
<script type="text/javascript">



$(document).ready(function() {
$('#fill').click(function(){
$('#div2').load('/Users/User_admin/Desktop/scanner/barcodescanner/local html files/dummy.html #url');
});
});


function startMyApp()
{
  document.location = 'scannerApp://';
}

</script>

</head>

<body align="center">

<h3> Product Info </h3>
<br><br><br>
<label> Product Name </label>
<input type="text"/>
<br><br>
<label> Product Category </label>
<input type="text"/>
<br><br>
<label> Serial Number </label> <div id="div2">[]</div>

<input id="launch" type="button" onclick='startMyApp()' value="Launch Application to scan serial number"> </input>

<br>

<input id="fill" type="button" value="Press button to fill the detail"></input>


</body>

</html>