在我的HTML頁面的一個動態加載一些文件中的字段,而點擊一個按鈕像如下jQuery的綁定方法
$('#add').click(function(){
$('#files').append('<input type="file" class="myfile" name="myfile" />');
});
我的問題是如何「綁定」新添加的元素到HTML頁面,這樣我可以訪問諸如
$('.myfile').change(function(){
// Code Here
});
我問這是因爲
$('.myfile').live('change',function(){
// Code here
});
不是在所有瀏覽器中工作,expecially IE
請幫助謝謝
感謝...的作品..感謝了很多.. – ramesh 2012-04-05 12:28:29