当我双击它时,我想编辑特定 id 的 td 值。我写了逻辑。在下面的代码中,“get()”函数将返回 10 个状态,该状态分配给表 td。如果我双击任何状态,我需要就地编辑和保存的功能。但我不知道为什么它不起作用。请任何人帮助我。
<html>
<head><title></title></head>
<body>
<div id="body" >
</div>
</body>
</html>
<script>
$(document).ready(function(){
var table='<table>';
table += '<tr><th style=""> Status</th></tr>';
table += '</table></br>';
$("#body").append(table);
var $tbody = $('<tbody>').appendTo('#body table:last');
$.ajax({
type : 'POST',
url : '@routes.Application.get()',
data : {
itemupc : item[0]
},
beforeSend:function()
{
},
success : function(items) {
$.each(items, function(j, itemsdetails) {
if(itemsdetails[3]=="R")
$tbody.append('<tr><td id="my'+itemsdetails[0]+'" class="editableTD">0</td></tr>');
});
}
});
$("#item_content").on('dblclick','.editableTD',function(e){ //assign event to editableTD class
e.stopPropagation();
var currentID=$(this).attr("id"); //grab the current id instead
var currentValue= $(this).html();
inlineEditSave(currentID,currentValue);
});
function inlineEditSave(currentElement,currentValue)
{
//$(currentElement).html('<i class="fa-li fa fa-spinner fa-spin"></i>');
$(currentElement).html('<input type="text" class="thVal" value="' + currentValue + '" />');
$(".thVal").focus();
$(".thVal").keyup(function (event) {
if (event.keyCode == 13) {
$(currentElement).html($(".thVal").val().trim());
}
});
$(document).click(function () {
$(currentElement).html($(".thVal").val().trim());
});
}
});
</script>