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 中使用一个按钮。当我点击它时,将发生覆盖,并且覆盖应填充数据。
我怎样才能用 Jquery 做到这一点?
我的问题是,当我点击按钮时,整个页面被发送回服务器。
谢谢你的帮助!
单击时将asp:Button创建回发。正如@juraj 在评论中所建议的那样,您可以使用 JavaScript 来防止这种情况发生,方法是false在您绑定到它的 click 函数的末尾返回。
asp:Button
false
另一种选择是在 asp 按钮上使用普通按钮:
<input type='button' value='Click Me' id='justButton' />
您还可以使用设计器(如果您愿意)在HTML > Input (Button).
HTML > Input (Button)