jquery 小部件工厂 - 我可以在 _create 处或小部件外部声明全局变量吗?
我正在尝试使用 小部件工厂 制作我的第一个 Jquery 小部件。
我的小部件中有 10 个函数,并且想要声明在 _create 上始终使用的变量,如下所示:
(function($,window){
$.widget("mobile.somesome",$.mobile.widget, {
_create: function() {
var self = this,
that = something else, ...
我想从其他函数中访问这些变量,但这不起作用或者更有可能......我做错了什么...... 。
问题: 是否可以在“小部件全局”级别上声明变量,如果可以,我该怎么做?
谢谢!
I'm trying to make my first Jquery widget using the widget factory.
I have 10 functions inside my widget and wanted to declare variables used throughout on _create like so:
(function($,window){
$.widget("mobile.somesome",$.mobile.widget, {
_create: function() {
var self = this,
that = something else, ...
I want to access these variables from within the other functions, but this does not work or more likely... I'm doing something wrong...
Question:
Is it possible to declare variables on a "widget-global" level and if so how can I do it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将它们声明为属性,并在整个小部件中设置/访问它们:
You could declare them as properties and them set/access them throughout the widget: