点击后制作标签文本框

时间:2011-09-30 14:43:06

标签: javascript label edit

我在网页上显示的表格中有金额列。

我想要做的是打开页面以显示金额作为标签。

当用户点击数量时,它就像文本框一样可以编辑。

1 个答案:

答案 0 :(得分:5)

你的意思是这样的(使用jQuery):

<span id="amount">3.25</span>
<input id="amount_entry" name="amount" style="display:none;"></input>

$('#amount').click(function() {
    $('#amount').css('display', 'none');
    $('#amount_entry')
        .val($('#amount').text())
        .css('display', '')
        .focus();
});

$('#amount_entry').blur(function() {
    $('#amount_entry').css('display', 'none');
    $('#amount')
        .text($('#amount_entry').val())
        .css('display', '');
});

示例演示:http://jsfiddle.net/LFgxr/