指定されたアイテムのロードを (動的にロードされている場合も) キャッチ/処理したいと考えています。
イベントがclick
正常に動作する場合:
$('#articles').on("click",".article",function(eo){
//...
});
これは私が試したことです:
$(document).on("load","input",function(){
alert(1);
});
これは私がそれを使用する方法です:
<input type=hidden name='size' value=1>
<select name='size'>
<option value=0>A4</option>
<option value=1>A3</option><!--this will be selected, that is indicated with the hidden input-->
</select>
これを行うためのスクリプト:
$(document).on("load","input",function(e){
var name = e.attr("name");
var val = e.val();
if(name!=""&& typeof(e)!="undefined")
{
e.parent().find('select[name='+name+']').val(val);
}
});
マニュアルにはそれが好ましいと書かれているので、可能であればある種の on() 関数を求めています。