答案 0 :(得分:2)
您不想使用prepend,它会在输入中添加给定文本,使您的文本出现在输入中。类似的东西:
<input type='text'>Your text</input>
您需要先使用之前创建
Your Text <input type='text'/>
请参阅此jsFiddle
您也可以执行此类操作,这会将文本添加为输入父项的第一项。
$('input').keypress(function(e) {
if(e.keyCode == 13) {
console.log($(this));
$(this).parent().prepend("<p>fasf</p>");
alert('You pressed enter!');
}
});
答案 1 :(得分:0)