我有一个按钮在我的phonegap HTML页面,我已经添加了一个按钮点击事件和 AJAX 调用到Web服务的URL.目前我没有调用任何Web服务的URL,但我有的主要问题是,我的按钮点击事件没有得到激发.在logcat它是给以下错误..
stale touch event action_down received from webcore ignoring
下面是我的按钮HTML代码..
<div style="display: table; margin: 0 auto; background-color: green;">
<button id="call" class="button">Call</button>
</div>
下面是按钮单击事件js文件代码。
//Add event listener to run when the device is ready
document.addEventListener("deviceready", onDeviceReady, false);
//Device is ready
function onDeviceReady() {
$(document).ready(function(){
$('#call').bind('click',function(evt){
senddata();
});
});
}
function senddata(){
e.preventDefault();
var empname=$("#name").text();
alert(empname);
var contactno=$("#contact").text();
alert(contactno);
//Webservice URL
var URL="index.html";
$.ajax({
url: URL,
data: "",
type: 'POST',
success: function (resp) {
alert(resp);
},
error: function(e) {
alert('Error: '+e);
}
});
}
请帮我解决这个问题...谢谢...
1条答案
按热度按时间9q78igpj1#
请使用以下代码代替
bind()
:或其他方法将单击事件添加到按钮的方法如下: