asp.net c# 中的鼠标悬停按钮事件

发布于 2024-12-22 12:20:37 字数 96 浏览 1 评论 0原文

我有一个网络应用程序,上面有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

唯憾梦倾城 2024-12-29 12:20:37
<input type="button" onmouseover="javascript:document.getElementById('textbox').value='Hello'" />
<input type="text" id="textbox" name="textbox" />
<input type="button" onmouseover="javascript:document.getElementById('textbox').value='Hello'" />
<input type="text" id="textbox" name="textbox" />
潦草背影 2024-12-29 12:20:37

你可以简单地使用 jQuery 来做到这一点

<input type="button" onmouseover="fillText()" />
<input type="text" id="textbox" name="textbox" />

以及 JavaScript/jQuery

function fillText() {
   $("#textBox").val = "Your Text";
}

You could simply use jQuery to do this

<input type="button" onmouseover="fillText()" />
<input type="text" id="textbox" name="textbox" />

And the JavaScript/jQuery

function fillText() {
   $("#textBox").val = "Your Text";
}
桜花祭 2024-12-29 12:20:37

服务器没有有关客户端的更多信息,但您可以使用 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文