jQuery小部件:将小部件限制为选定的标签

时间:2013-10-12 22:29:54

标签: javascript jquery

我想将我的窗口小部件的构造仅限制为<table>个元素。这在插件的预小部件版本中很容易,我正在测试tagName

if (this.element[0].tagName.toLowerCase() !== 'table')

如果tagName不合适,我只是返回jQuery对象以确保可链接性。

我如何在小工具顶部进行操作?

1 个答案:

答案 0 :(得分:0)

http://jqueryui.com/widget/

中取样
$.widget( "custom.mywidget", {

// the constructor
_create: function() {
   if(this.element.tagName.toLower() !== 'table') throw "mywidget requires tableelement";