有一个奇怪的情况发生。我有一个<h3>
文字。当我使用 .text() 提取此文本然后将其放入 a<textarea>
时,文本出现两次。
HTML
<h3 class="profileRightAboutMeText">Heya, this is all the text.</h3>
<textarea class="profileRightAboutMeTextarea"></textarea>
查询
$(document).on('click','h6.editMyProfileSection', function() {
var originalText = $('h3.profileRightAboutMeText').text();
$('h3.profileRightAboutMeText').fadeOut('fast', function() {
$('textarea.profileRightAboutMeTextarea').text(originalText).fadeIn('fast');
});
alert(originalText);
});
警报和<textarea>
显示文本都加倍,如下所示:
嘿,这是所有的文字。嘿,这是所有的文字。