Jquery扩展现有功能
我正在寻找一种方法来扩展现有的 Jquery 函数以为其提供更多选项/参数。
我想使用的是 $.ajax 但这可以适用于任何 jquery 函数。
我希望能够调用这样的函数:
$.adv_ajax()
这将是 $.ajax 函数的扩展版本,如下所示:
$.adv_ajax({
custom_parameter: "abc", //my custom one
url: "test.html",
context: document.body,
success: function(){
$(this).addClass("done");
}
});
I am looking for a way to expand an existing Jquery function to give it more options/parameters.
The one I want to use is $.ajax but this could apply to any jquery function.
I want to be able to call a function like this:
$.adv_ajax()
Which would be an extended version of the $.ajax function like as follows:
$.adv_ajax({
custom_parameter: "abc", //my custom one
url: "test.html",
context: document.body,
success: function(){
$(this).addClass("done");
}
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的东西:
Something like this:
那么只需将您的函数附加到 jQuery 对象即可:
Well then just attach your function to the jQuery object: