Android Phonegap应用程序中的按钮单击事件出错

时间:2014-11-19 05:34:55

标签: android jquery ajax cordova

我的phonegap HTML页面中有一个按钮,我已经添加了一个按钮点击事件和ajax调用webservice URL。目前我没有调用任何webservice URL,但我遇到的主要问题是我的按钮点击事件是没有被解雇.on 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 个答案:

答案 0 :(得分:1)

而不是绑定只使用以下内容。

$(document).on('click', '#Login_button', function() {

//Call your method to call webservice.

senddata();

}

或其他将点击事件添加到按钮的方法如下。

<button id="call" onclick="senddata();">Call</button>

希望它对你有所帮助。