在输入文本框中获取值

僤鯓⒐⒋嵵緔 提交于 2020-08-09 14:45:51

问题:

What are the ways to get and render an input value using jQuery? 使用jQuery获取和呈现输入值的方法有哪些?

Here is one: 这是一个:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.3.min.js" ></script>
<script type="text/javascript">
    $(document).ready(function(){
        $("#txt_name").keyup(function(){
            alert($(this).val());
        });
    })
</script>

<input type="text" id="txt_name"  />

解决方案:

参考一: https://stackoom.com/question/H9b1/在输入文本框中获取值
参考二: https://oldbug.net/q/H9b1/Get-the-value-in-an-input-text-box
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!