jquery プラグインを作成し、それをページ内のいくつかの HTML 要素に使用したいと考えています。これは私のHTMLコードです:
<select class="test">
<option>
111
</option>
<option>
222
</option>
<option>
333
</option>
</select>
<select class="test">
<option>
444
</option>
<option>
555
</option>
</select>
select
要素にプラグインを使用したい。これは私のプラグインのサンプルです:
(function ( $ ) {
$.fn.testplug = function() {
var res = "";
this.children("option").each(function(){
res+=$(this).text()+"#";
});
alert(res);
};
}( jQuery ));
そしてそれを使用するために:
$(".test").testplug();
今、私は 2 つres
の値を持っていると考えています。そのうちの 1 つは で、111#222#333#
もう 1 つは である必要がありますが444#555#
、1 つの結果があり、それは111#222#333#444#555#
です。希望する結果を得るにはどうすればよいですか?
jsfiddle へのリンク