0

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

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

4

1 回答 1

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>
于 2013-02-19T04:43:06.310 回答