作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 jQuery 插件。我想在我的 jQuery 插件中添加用于异常处理的 try catch block 。
我的插件
$(document).ready(function(){
$('.requiredclass').keyup(function() {
$(this).pluginMethod();
});
});
(function($) { //i Want try catch block for this part
// jQuery plugin definition
$.fn.pluginMethod = function(e) {
return this.each(function() {
var $this = $.this;
var som= $this.val();
//My Code goes here
});
};
})(jQuery);
现在如果我想添加 try catch block ,那么插件会是什么样子?如果是 jquery 函数,我们会做这样的事情
函数
function myFunction() {
//varible declarations
try {
//Code goes here
}
catch(err) { //We can also throw from try block and catch it here
alert("err");
}
finally {
//code for finally block
}
}
现在这是我们知道的函数格式。但是如果我想在插件中添加异常处理,格式是什么?在 (function($) {
插件开始然后有 $.fn.pluginMethod = function(e) {
后跟
return this.each(function() {`. So where to start the try block and stop it,where to put catch block.Can any one suggest me the format.
如果有人对问题的理解有任何疑问,请告诉我,我会尝试更详细地解释。
最佳答案
我不认为我真的明白你的问题。你需要更清楚。
但这就是你想要的吗?
$(document).ready(function(){
$('.requiredclass').keyup(function() {
$(this).pluginMethod();
});
});
try {
(function($) {
//jQuery plugin definition
$.fn.pluginMethod = function(e) {
return this.each(function() {
var $this = $.this;
var som= $this.val();
//your Code goes here
});
};
})(jQuery);
} catch(err) {
alert("err");
} finally {
//code for finally block
}
关于javascript - 如何在 jquery 插件中添加 try catch block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26795668/
我是一名优秀的程序员,十分优秀!