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.
在 asp.net 应用程序中,
我有一个标签和一个文本框。
我希望标签始终具有与文本框相同的值。
文本框的值可以由用户更改,也可以由代码中的其他函数更改,我希望标签随之更改。
谢谢
$("#textboxId").change(function(){ $("#labelId").text($(this).val()); })