gpt4 book ai didi

javascript - 如何在 jquery 插件中添加 try catch block

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:59:07 25 4
gpt4 key购买 nike

我有一个 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com