我有一个小应用,需要在提交投诉前提示拨打911。
我正在使用此代码:
<script type="text/javascript">
$( document ).delegate("#index", "pagebeforecreate", function() {
alert("If this is an emergency, dial 911");
});
</script>
然而,这可行,应用程序说“index.html”及其下方的警报。 如何删除“index.html”部分?
该页面使用phonegap,jquery mobile和在ios设备上启动。