我想将我的小部件的构造<table>
仅限于元素。这在我正在测试的插件的预小部件版本中很容易tagName
。
if (this.element[0].tagName.toLowerCase() !== 'table')
如果tagName
不合适,我只是返回 jQuery 对象以确保可链接性。
我将如何在小部件工厂的顶部进行呢?
我想将我的小部件的构造<table>
仅限于元素。这在我正在测试的插件的预小部件版本中很容易tagName
。
if (this.element[0].tagName.toLowerCase() !== 'table')
如果tagName
不合适,我只是返回 jQuery 对象以确保可链接性。
我将如何在小部件工厂的顶部进行呢?
从http://jqueryui.com/widget/获取样本
$.widget( "custom.mywidget", {
// the constructor
_create: function() {
if(this.element.tagName.toLower() !== 'table') throw "mywidget requires tableelement";