更改后立即将文本框值传递给 JavaScript 变量
我想在文本框中输入一个数值,输入后我希望它立即分配给一个 JavaScript 变量而不提交它,
所以这个想法是 输入一个数字 var x = 该数字立即
这是 html
<form id="tools">
<input type="text" id"stk"/>
</form>
现在什么是 javascript? :D
i want to type a numerical value in a text box and after i type it i want it to be assigned to a JavaScript variable instantly without submitting it
so the idea is
type a number
var x = that number instantly
Here is the html
<form id="tools">
<input type="text" id"stk"/>
</form>
now what is the javascript? :D
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为事件(onKeyUp)分配一个处理程序...并且该处理程序应该将值分配给变量。我建议你使用 jQuery 而不是纯 JavaScript。
使用 jQuery 应该如下所示:
抱歉,如果我在语法上犯了错误,但这就是主要思想。
you can achive that assigning an a handler for the event (onKeyUp)... and that handler should assign the value to the variable. I suggest you to use jQuery instead of pure javascript.
With jQuery should look like this:
Sorry if I made a mistake with the syntax, but that's the main idea.
您的 Jsp:
所需的 Java 脚本是:
通过这种类型的
JavaScript 函数
,JavaScript
将每 5 秒接收一次文本字段
的值。如果您立即需要,可以将5000
替换为0
。我认为尝试理解它有点笨拙Your Jsp :
Java Script needed is :
By this type of
JavaScript function
the value of thetext field
will be received byJavaScript
for every 5 Seconds . If you need instantly you can replace5000
with0
. I think its little bit clumsy try to understand it