我在jqgrid中使用渲染器,它显示特定列的按钮,现在我想在用户按下按钮时将按钮更改为文本。如何使用javascript在运行时将rendere r更改为从按钮到文本的标签?
答案 0 :(得分:0)
使用jquery
classname =所有按钮的公共
$(".classname").click(function(){
$text = $(this).text();
$(this).replaceWith($("<lable></lable>"));
});