如何使用jquery 与Jtable 的自定义输入和显示()?
How to use jquery with Jtable's custom input and display()?
显示()
hehe:{
display: function (data) {
$t='<button id="tow"></button>';
return $t;
}
输入()
empid:{
input: function (data) {
if (data.record) {
return '<input type="text" id="empid"/>'; }}
$("#tow").click
和 $("#empid").click
不起作用。在 return 之前绑定点击事件也不起作用。
我可以这样做。
onclick="myfunc(this)"
但我还需要jquery。
我认为你需要使用 event
delegation technique 如下:
$(document).on("click", "#tow", function(){
//do something here
});
$(document).on("click", "#empid", function(){
//do something here
});
显示()
hehe:{
display: function (data) {
$t='<button id="tow"></button>';
return $t;
}
输入()
empid:{
input: function (data) {
if (data.record) {
return '<input type="text" id="empid"/>'; }}
$("#tow").click
和 $("#empid").click
不起作用。在 return 之前绑定点击事件也不起作用。
我可以这样做。
onclick="myfunc(this)"
但我还需要jquery。
我认为你需要使用 event
delegation technique 如下:
$(document).on("click", "#tow", function(){
//do something here
});
$(document).on("click", "#empid", function(){
//do something here
});