作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个插件,我从 jQuery plugin authoring tutorial 获得了基本设置:
(function( $ ){
var methods = {
init : function( items ) {
/* do stuff */
},
reset : function( name ) {
// here I need the var items from init
}
};
$.fn.myplugin = function( method ) {
// Method calling logic
if ( methods[method] ) {
return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
} else if ( typeof method === 'object' || ! method ) {
return methods.init.apply( this, arguments );
} else {
$.error( 'Method ' + method + ' does not exist on jQuery.tooltip' );
}
};
})( jQuery );
如何在方法中reset
从init
获取变量items
?
谢谢和问候,亚历克斯
最佳答案
您可以将它们存储在最小的公共(public)范围内,例如methods
对象:
var methods = {
init : function( items ) {
/* do stuff */
methods.myData = 15;
},
reset : function( name ) {
// here I need the var items from init
alert(methods.myData * 2); // alerts 30
}
};
关于javascript - jQuery 方法 - 移交变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6497869/
我是一名优秀的程序员,十分优秀!