我想使用jquery将文本附加到用户在文本框中键入的内容,而用户正在键入。
假设我想在用户键入的内容后附加“is a hat”。
让我们说用户开始在字段中输入“我的朋友”。
当他们输入时,该框将显示为:
M -> M is a hat
y -> My is a hat
-> My is a hat
F -> My F is a hat
r -> My Fr is a hat
...
我开始为keypress事件编写一个函数,但后来我意识到我最终会得到像
这样的东西M -> M is a hat
y -> M is a haty is a hat
...
所以我想知道的是我应该如何
答案 0 :(得分:3)
你可以这样附加span
:
var phrase = " is a hat";
$("#idOfInput").keydown(function() {
$("#idOfSpan").html(this.value + phrase);
});
答案 1 :(得分:2)
你可以试试这个
<强> JS 强>
$("input").keyup(function() {
$(".dynamic").html(this.value);
});
<强> HTML 强>
<input type="text" />
<div>
<span class="dynamic"></span>
<span class="static"> is a hat </span>
</div>
<强> Check Fiddle 强>
您将基本上定位包含动态文本的范围,并根据keyup事件呈现html。
答案 2 :(得分:0)
this following example work perfectly .
**html**
<input type="text" id="text"/>
<p><span id="app"></span>
<span>this is a hat</span>
<p>
**script**
----------
$("#text").keyup(function(){
$("#app").text($("input").val());
});