使用jquery通过数组索引和名称属性设置文本框值
$(“[name = imageheight]”)返回下面的文本框数组
我知道我可以通过它的索引来获得文本框的价值
我如何设置索引0上的文本框的值。我已经尝试过,但它给了我一个错误
$('input').eq(0).val("new value")
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" />
$('[name=imageheight]').eq(0).attr('value', '250')
您可以使用
$('[name=imageheight]').eq(0).val(250)
链接地址: http://www.djcxy.com/p/36277.html
上一篇: Set textbox value by array index and name attribute using jquery