我想将我的窗口小部件的构造仅限制为<table>
个元素。这在插件的预小部件版本中很容易,我正在测试tagName
。
if (this.element[0].tagName.toLowerCase() !== 'table')
如果tagName
不合适,我只是返回jQuery对象以确保可链接性。
我如何在小工具顶部进行操作?
答案 0 :(得分:0)
$.widget( "custom.mywidget", {
// the constructor
_create: function() {
if(this.element.tagName.toLower() !== 'table') throw "mywidget requires tableelement";