问题:
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
来源:oschina
链接:https://my.oschina.net/u/4428122/blog/4317157