我正在编写自己的 jQuery 函数。是否可以设置函数参数的默认值?
最佳答案
一种方法是检查参数。例如:
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
}
关于jquery - jquery中自己函数的参数默认值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2442756/