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 に答える