これは、アンカータグをクリックしてテキストボックスを表示するための私の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>
テキストボックスがテキストで表示されているときにこれを使用して、テキストボックス内のテキストを変更し、アンカータグの新しいテキストを表示したい