0
我動態地添加輸入字段到td
元素jQuery UI的動態插入輸入
$('.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具有標識日期,日期選擇器沒有顯示出來。 我也有插入輸入字段模糊功能,是一個問題?
$('.editing').live('blur',function(){
//did something
});
您可以張貼在的jsfiddle?也嘗試使用一些不同的名稱,而不是「日期」,這可能會讓你陷入困境 – Samson 2012-07-14 19:18:42
代碼有點複雜,我添加了console.log(0)if語句後,它的工作 – pahnin 2012-07-14 19:20:25