jquery中自己函数的参数默认值
我正在编写自己的 jQuery 函数。是否可以设置函数参数的默认值?
I am writing my own jQuery functions. Is it possible to set the default values of the function parameters?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
一种方法是检查参数。例如:
另一种可能性是这样的:
One way to do this is to check the parameters. For example:
Another possibility is this:
我现在无法投票,但同意 color2life。
可能是最简洁和可读的版本。
i can't vote right now but agree with color2life.
is probably the most concise and readable version.
您可能需要检查
undefined
而不是null
。You might want to check for
undefined
instead ofnull
.如果没有定义,则 a 有“某物”
if not defined then a have "something"