0

複数のテキスト フィールドを持つフォームがあります。フィールドに何かを書くときにスパンタグを変更したい。このような:

このような

何か案は?

4

4 に答える 4

0

$.keyup() を使用して、html を入力値で更新します。
デモ: 作業デモ

$(document).ready(function()
{
    // Regular typing updates.
    $("#input").keyup(function()
    {
        $("#output").html($(this).val());
    });

    // If pasted with mouse, when blur triggers, update.
    $("#input").change(function()
    {
        $(this).keyup();
    });

    // Any value loaded with the page.
    $("#input").keyup();
});
于 2013-05-22T14:48:27.217 に答える
0

失われた焦点もアプローチであり、

html:

<input type="text" id="txa" value="123" />
<span>345</span>

jquery:

$('input[id=txa]').blur(function () {
    $(this).next("span").text($(this).val());
});

喜んでお手伝いします。

于 2013-05-22T15:00:47.207 に答える