我有一个文本框并在文本框中写了“ABC”,但我想使用jQuery获取文本
<input type=text value="ABC">
但是当我使用jQuery的.html()
时,它返回null
答案 0 :(得分:1)
这是 FIDDLE
<input type="text">
<span></span>
$('input').keyup(function() {
$('span').text($(this).val());
});
或
$('input').keyup(function() {
$('span').html($(this).val());
});