请问我,我如何从adminhtml网格获取/编辑文件。 jQuery没有得到这个领域的价值。事件 - 单击行。我尝试编辑“grid.js”。
alert(jQuery("table#productGrid_table tbody>tr>td:nth-child(3)").html)
没有得到结果
如果
alert(jQuery(this).html)
结果是
function(a){ifa===b}return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace....
理想我不会使用那个脚本,在简单的表上它是工作
jQuery("table#productGrid_table tbody>tr>td:nth-child(3)").on('click', function(){
jQuery(this).parent('tr').find('input:checkbox').attr("checked","checked");
jQuery(this).html("<input type='text' value='"+jQuery(this).text()+"' class='filterInput' autofocus/>");
}).on('click', 'td input', function(){
return false;
}).on('focusout', 'td input', function(){
jQuery(this).parent('td').text(jQuery(this).val());
});
有人请帮帮我,谢谢
答案 0 :(得分:0)
您没有调用html函数 - 添加括号来执行此操作:
// alerts html content from selected node
alert(jQuery("table#productGrid_table tbody>tr>td:nth-child(3)").html())
// ^^