1
我正在創建一個小部件,並希望給它帶有一些值的defaults
對象。我希望用戶允許更改它們,然後正常創建小部件(因此會使用新的默認值)。但用戶可以以什麼方式訪問默認值?訪問對象用於從外部創建jQuery UI小部件
例子:
// separate file, create widget
$.widget("namespace.myWidget", {
defaults: {
hello: "world"
}
}
// index.html
// then user should be able to do something similar
$.namespace.myWidget.defaults = { goodbye: "World" };
// or
$.namespace.myWidget.defaults.hello = "Dog";
// and then create widget normally
$(".selector").myWidget();