asp.net c# 中的鼠标悬停按钮事件
我有一个网络应用程序,上面有 3 个按钮,下面有一个没有文本的文本框,我想创建一个事件,当用户将鼠标悬停在按钮上时填充文本框,有人可以指点我吗朝着正确的方向
谢谢
I have a web app that has 3 buttons on it, under it there is a textbox with no text on it, I would like to create an event that fills the textbox when a user hovers his mouse over the button, can someone please point me in the right direction
Thank
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以简单地使用 jQuery 来做到这一点
以及 JavaScript/jQuery
You could simply use jQuery to do this
And the JavaScript/jQuery
服务器没有有关客户端的更多信息,但您可以使用 AJAX updatepanel 来做到这一点。使用java函数在隐藏文本中写入鼠标位置。然后使用触发器(在条件更新模式下)或计时器(在始终更新模式下)读取服务器端的隐藏文本。
server have no more info about client side, but you could do that with AJAX updatepanel. use a java function to write mouse position in hidden text. then read hidden text in server side with triggers (in condition update mode) or timer (in always update mode).