0

td入力フィールドを要素に動的に追加しています

$('.edit_text').live('click',function(){
    $(this).html('<input type="text" value="'+$(this).text()+'" style="background:url(text_bx.gif) no-repeat bottom;display:inline;padding: 0; margin: 0;" class="editing" >');
    $(this).children('input').focus();
    if ($(this).attr('id')=='date'){
        $(this).children('input').datepicker( "refresh");//"option", "dateFormat","yy-mm-dd");
    }
});

しかし、td に id 日付がある場合、datepicker は表示されません。挿入された入力フィールドにもぼかし機能がありますが、それは問題ですか?

$('.editing').live('blur',function(){
//did something
    });
4

1 に答える 1