这是我的 jquery,用于在单击锚标记时显示文本框
$("a").click(function () {
var textbox = $('<input id="txt1" type="text" />')
var oldText = $(this).text();
$(this).replaceWith(textbox);
textbox.val(oldText);
$(this).html($('<input id="txt1" type="text" />').val())
});
我的锚标签
<a>hello</a>
当文本框显示文本时使用它我想更改文本框中的文本并显示锚标签的新文本