在 JQuery 中是否可以跳过可选参数并传递下一个参数?如果是,jquery 函数如何确定哪个值用于哪个参数?
一个例子:
//
// function signature is
// jQuery.get( url [, data] [, success(data, textStatus, jqXHR)] [, dataType] )
//
// function is called as
//
$.get('ajax/test.html', function (data) {
$('.result').html(data);
alert('Load was performed.');
});
在 URL 之后调用 $.get() 时,会跳过 [, data] ,然后传递成功回调。