0

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

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

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

我将如何在小部件工厂的顶部进行呢?

4

1 回答 1

0

http://jqueryui.com/widget/获取样本

$.widget( "custom.mywidget", {

// the constructor
_create: function() {
   if(this.element.tagName.toLower() !== 'table') throw "mywidget requires tableelement"; 
于 2013-10-12T22:37:10.693 回答