jquery中自己函数的参数默认值

发布于 2024-08-24 22:00:18 字数 41 浏览 8 评论 0原文

我正在编写自己的 jQuery 函数。是否可以设置函数参数的默认值?

I am writing my own jQuery functions. Is it possible to set the default values of the function parameters?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

断肠人 2024-08-31 22:00:18

一种方法是检查参数。例如:

function test(paramA) {
    if (paramA == null) {
        paramA = defaultValue;
    }
    // use paramA here
}

另一种可能性是这样的:

function test() {
    var paramA = defaultValue;
    if (arguments.length == 1) {
        paramA = arguments[0];
    }
    // use paramA here
}

One way to do this is to check the parameters. For example:

function test(paramA) {
    if (paramA == null) {
        paramA = defaultValue;
    }
    // use paramA here
}

Another possibility is this:

function test() {
    var paramA = defaultValue;
    if (arguments.length == 1) {
        paramA = arguments[0];
    }
    // use paramA here
}
恏ㄋ傷疤忘ㄋ疼 2024-08-31 22:00:18

我现在无法投票,但同意 color2life。

a = a || "something"

可能是最简洁和可读的版本。

i can't vote right now but agree with color2life.

a = a || "something"

is probably the most concise and readable version.

南巷近海 2024-08-31 22:00:18

您可能需要检查 undefined 而不是 null

var f=function(param){
  if(param===undefined){
    // set default value for param
  }
}

You might want to check for undefined instead of null.

var f=function(param){
  if(param===undefined){
    // set default value for param
  }
}
楠木可依 2024-08-31 22:00:18

如果没有定义,则 a 有“某物”

a = a || "something"; // setting default value

if not defined then a have "something"

a = a || "something"; // setting default value
空城仅有旧梦在 2024-08-31 22:00:18
(function($) {
    $.fn.yourFunction= function(opts) {
        var options = $.extend({}, $.fn.yourFunction.defaults, opts);

        ....

        $.fn.yourFunction.defaults = {
        param1: "someval",
        param2: "",
        param3: "#ffffff"
    };

})(jQuery);
(function($) {
    $.fn.yourFunction= function(opts) {
        var options = $.extend({}, $.fn.yourFunction.defaults, opts);

        ....

        $.fn.yourFunction.defaults = {
        param1: "someval",
        param2: "",
        param3: "#ffffff"
    };

})(jQuery);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文