1

我有一个 jQuery 函数,它应该将数组中的值读取到文本字段中。但是,我在将数组的零位置读入文本字段时遇到问题。

$(function(){
    var values = ['one', 'two', 'three'];
        $('#room').val(values[0].text());  // not sure about this statement
});

这是我的html代码

<input id="room" />
4

1 回答 1

1

text() 用于将文本转换为元素

$(function(){
    var values = ['one', 'two', 'three'];
        $('#room').val(values[0]);
});

text() 的示例使用

<div>Hello World</div>
$("div").text() //this will return Hello World
于 2012-07-31T03:04:43.170 回答