singleCursorHandlerTouchEvent getEditableSupport FASLE 解决方案


PhoneGap项目在Android4.0手机运行无误,而在2.3的手机有挺多问题,其中一个问题是点击某些按钮不响应,给出的错误打印如题,最后在万能的stackoverflow上找到了答案。

(吐个槽,为啥国外的开发者问问题都这么有始有终呢,回答的人也是各种热心,真应该好好学学这种开发态度)

http://stackoverflow.com/questions/10398914/phonegap-button-does-not-fire-due-to-singlecursorhandlertouchevent-geteditable


解决:按钮不响应是是因为点击事件被webview获取而没有传递到Phonegap层面(不要问我为什么我也不知道。。。),所以如果你是这样写的点击事件:

<div id="aa" onclick="funcion()">click here</div>

你可以试着这么来写:

document.getElementById("aa").addEventListener("click",function (){do something},false);

试试呗,it works for me!


singleCursorHandlerTouchEvent getEditableSupport FASLE 解决方案_第1张图片


你可能感兴趣的:(singleCursorHandlerTouchEvent getEditableSupport FASLE 解决方案)