Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 jqgrid 中使用渲染器,它显示特定列的按钮,现在我想在用户按下按钮时将按钮更改为文本。如何在运行时使用 javascript 将渲染器从按钮更改为文本?
使用 jQuery
类名 = 所有按钮通用
$(".classname").click(function(){ $text = $(this).text(); $(this).replaceWith($("<lable></lable>")); });