次のように初期化される 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;
}),