2013-01-31 2 views
0

시간이 조금 있습니다. 웹 페이지에서 호출되는 바코드 애플리케이션을 개발해야합니다. 이제 응용 프로그램을 호출하는 자바 스크립트를 작성했습니다. 앱이 바코드 판독을 마치면 내 웹 페이지로 돌아 가야하며 바코드 데이터는 웹 페이지의 일부 텍스트 상자에 저장되어야합니다.iPhone 앱에서 웹 서버로 데이터를 다시 전송합니다.

내 문제는 다음과 같습니다. -> 웹 페이지에서 앱을 실행하면 페이지가 백그라운드로 전송됩니다. 이제 응용 프로그램에서 데이터를 반환 할 때 페이지를 새로 고치지 않고 콘텐츠로 웹 페이지의 텍스트 상자 개체를 채우는 방법 (페이지 내에 다른 데이터가 있고 로그인 한 사용자도 있습니다)

답변

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>