2

我正在使用数据表和编辑行我现在可以在当前行上插入输入元素,我想在输入元素上设置输入键,但是在 jquery 插入的绝对值中不起作用

jQuery:

    $("#showCategories tbody").dblclick(function(event) {
            var nTds_showCategories = $('td', this);
            $(oTable_categories.fnSettings().aoData).each(function (){$(this.nTr).removeClass('row_selected');});
            $(event.target.parentNode).addClass('row_selected');
            current_category_text=$.trim( $(event.target).text() );
            current_category_path=$(event.target);
            $(event.target).html("<input value= '"+ $(event.target).text() +"' style='width:200px;float:right;height:17px;padding:0px;height:22px;padding-right:3px;' id='category_input_change' />");
            $(event.target).append("<ul class='styledlist' style='width:50px;float:right;'><li style='line-height:13px;' id='save_category' >ذخیره</li></ul>");
            $(event.target).append("<ul class='styledlist' style='width:50px;float:right;'><li style='line-height:13px;' id='cancel_save_category' >انصراف</li></ul>") ;
            category_row_editable=false;
            current_dlbclick=false;
            event.returnValue= false;
            return false;
         }
    });

我正在为此尝试以下代码: 1:

   $('#category_input_change').bind('keypress', function(e) {
      if(e.keyCode==13)
           alert('ddddd');
    });

2:

$('#category_input_change').keyup(function (e) {
  if (e.keyCode == 13)
     alert('ddddd');
});
4

2 回答 2

2

尝试使用.on()。并且不要使用idoncategory_input_change因为id必须是唯一的。改为使用class

像这样:

$("#showCategories").on('keyup', '.category_input_change', function(){
    //your code here..
});
于 2013-05-22T06:19:06.947 回答
0

尝试使用.live.on类似的方法

$('#category_input_change').live('keypress', function(e) {
    if(e.keyCode==13)
        alert('ddddd');
});
于 2013-05-22T06:42:38.097 回答