我的jQuery代碼樣本中的功能是這樣的:的Jquery的preventDefault
$(document).on("click",".delete", function(del) {
var foo='del';
connect(foo);
alert("connected");
});
與「連接」功能看起來像:
function connect(foo){
var networkState = navigator.network.connection.type;
if (networkState == Connection.NONE){
navigator.notification.alert('There is no connection.','','Error','Ok');
foo.preventDefault();
}
}
我需要的是「連接「檢查互聯網連接後功能停止執行其他功能。在這種情況下,在執行警報之前,功能「del」。
通過此代碼,我收到一條錯誤消息「Uncaught ReferenceError:del未在文件中定義...」對此,什麼纔是正確的解決方案?
你能否詳細說明你的問題? – 2014-09-04 16:14:13
你是否包含phonegap插件? navigator.network.connection.type是一個phonegap功能 – 2014-09-04 16:23:46