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.
我有一个记录集分页导航和一个输入一些文本的文本框。我想要的是当我单击分页导航上的下一个按钮时,文本仍将保留在那里,直到我点击清除按钮(这是唯一一次将在文本框中删除)。有什么办法吗?
谢谢。
通过 Jquery,您可以实现这一点。
在按钮单击事件上,您可以清除文本框
$("#btnID").click(function() { $("#textboxID").val(''); });