我想知道是否可以从函数返回jQuery小部件实例。我已经找到了一种完全不同的方式来做我想要的,所以这只是为了满足我自己的好奇心。
假设我有两个小部件,一个继承自另一个小部件。我也有一些可能有childWidget的代码,或者它可能有一个parentWidget。但重要的是在父窗口小部件上调用一个方法 - 在这种情况下,doSomething()。而不是每次都写if语句来确定是否调用childWidget('doSomething')或parentWidget('doSomething'),我可以编写一次这个代码,返回正确的小部件,然后调用doSomething()吗?
一个非常基本的例子:
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Little widget test</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script>
$(function() {
//create parentWidget with doSomething function
$.widget( "custom.parentWidget", {
options: {
widgetName: 'parent'
},
_create: function() {
this.element
// add a class for theming
.addClass( this.options.widgetName );
},
doSomething: function( event ) {
alert(this.options.widgetName);
}
});
//create child widget; just overrides the widgetName property
$.widget( "custom.childWidget", $.custom.parentWidget, {
options: {
widgetName: 'child'
}
});
//make an instance of each widget
$( "#my-widget1" ).parentWidget();
$( "#my-widget2" ).childWidget();
//function to get the widget instance
$.fn.getWidget = function() {
if($(this).is('.parent'))
return $(this).parentWidget();
return $(this).childWidget();
};
//this does not work
$( "#my-widget1" ).getWidget()('doSomething');
});
</script>
</head>
<body>
<div>
<div id="my-widget1">parent widget</div>
<div id="my-widget2">child widget</div>
</div>
</body>
</html>
答案 0 :(得分:0)
根据我的测试,我很确定答案是“不”。
我所做的是通过一个通用函数汇集对窗口小部件的所有调用,因为我只需要对我的窗口小部件进行非常简单的调用,每个调用包含一个参数:
$.fn.callMyWidget = function (params) {
if ($(this).is('.parent')) {
$(this).parentWidget(params);
}
else {
$(this).childWidget(params);
}
}
//so now I can do this:
$( "#my-widget1" ).callMyWidget('doSomething');