<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";