我有一个 jQuery 函数,它应该将数组中的值读取到文本字段中。但是,我在将数组的零位置读入文本字段时遇到问题。
$(function(){
var values = ['one', 'two', 'three'];
$('#room').val(values[0].text()); // not sure about this statement
});
这是我的html代码
<input id="room" />
我有一个 jQuery 函数,它应该将数组中的值读取到文本字段中。但是,我在将数组的零位置读入文本字段时遇到问题。
$(function(){
var values = ['one', 'two', 'three'];
$('#room').val(values[0].text()); // not sure about this statement
});
这是我的html代码
<input id="room" />