我有一个像这样初始化的 JS 库:
$("#container").mylibrary({
progressBarWidth: "480px",
fileUploadProgress: function(progress) {
// handle upload progress here
},
// etc. other callbacks and variables continue
)};
我想更改它,以便查看用户是否在移动设备上,如果是,则为进度条宽度返回一个不同的值。我怎样才能把一个小函数内联在这里,并返回一个值?我试过这个,没有运气:
progressBarWidth: (function() {
// do some math here
r = '480px';
return r;
}),