0
一連のhtml select入力用のJQueryプラグインを開発しようとしています。 選択した変更がある場合、それ以降のすべての選択が変更/再ロードされます。ここでJQueryプラグインの再帰メソッド
はhtmlです -
<select id="first" class="myselect" data-child ="second">...</select>
<select id="second" class="myselect" data-child ="third">..</select>
<select id="third" class="myselect" data-child ="fourth">...</select>
....
$('.myselect').MySelect();
これは私がそう遠
(function ($) {
$.fn.MySelect= function() {
return this.each(function() {
var $This = $(this);
var childId = $This.attr('data-child');
$This.change(function (e) {
e.preventDefault();
if (childId !='none') {
var $Child = $('#' + childId);
$Child.Reset(); //Should be Recursive call
}
});
});
};
}(jQuery));
私はプラグインの中にそれを行うことができますどのように持っていた私のプラグインですか?
または '$の子供をダウンカスケードので自体に変更をトリガーすることにカスタムイベントを使用することです。 MySelect(); '? – ramabarca