如何:从asp.net输入框动态调用javascript?
我有一个 asp.net 输入框:
<asp:TextBox ID="InCL" runat="server" Text=""></asp:TextBox>
输入数字后,我想将该值发送到更新 google 仪表的 javascript 函数。
例如,用户立即动态输入 77,Google 仪表移动到该位置。
如有任何帮助,我们将不胜感激。
谢谢。
编辑
我正在查看 onkeyup DOM 事件,这是一个好方法吗?
我想我只是在这里自言自语......
I have a asp.net input box:
<asp:TextBox ID="InCL" runat="server" Text=""></asp:TextBox>
As soon as a number is entered I would like to send that value to a javascript function that updates a google gauge.
For example, user inputs 77, the google gauge immediately dynamically moves to that position.
Any help is appreciated.
Thank You.
EDIT
I'm looking at the onkeyup DOM event, is this a good way to go?
I think I'm just talking to myself on here.....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个 jQuery 脚本,我曾经做过类似的事情。它确实使用
onkeyup
来设置值;它还使用onkeydown
来防止非数字值;如果用户尝试让文本框不留任何值,则强制使用默认值0
:Here is a script in jQuery I used to do something very similar. It does indeed use
onkeyup
to set the value; it also usesonkeydown
to prevent non-numeric values; and forces a default value of0
if the user tries to leave the textbox with no value:您可以这样做:
YourJavaScriptFunction() 将从 InCL 中读取值并执行您需要执行的操作。
您还可以将值传递给 JavaScript,如下所示: onchange="YourJavaScriptFunction(this.value)"
相同的语法适用于 onkeyup: onkeyup="YourJavaScriptFunction()"
You can do this:
YourJavaScriptFunction() would then read the value out of InCL and do whatever you need to do with it.
You could also pass the value to your JavaScript like this: onchange="YourJavaScriptFunction(this.value)"
The same syntax will work with onkeyup: onkeyup="YourJavaScriptFunction()"