gpt4 book ai didi

javascript - jQuery 使用 text() 获取包含单引号的文本无法正确显示

转载 作者:行者123 更新时间:2023-12-03 07:37:58 25 4
gpt4 key购买 nike

所以我想在单击按钮时显示 div 的文本以输入值。但如果文本包含单引号,则无法正确显示。

<div id="content_comment">It's Yours!</div>
<button id="btn_comment_edit">Edit</button>

// jQuery
$('.btn_comment_edit').click(function(){
$('#content_comment').replaceWith("<form method='post'><input type=text value='"+$('#content_comment').text()+"'></form>")
});

// result
// It' (doesn't show after single quotes)

输入值中应为 It's Yours!。如何用单引号显示整个语句?

最佳答案

你可以做这样的事情

 $('#content_comment').replaceWith("<form method='post'><input type=text value='\'' +$('#content_comment').text()+'\'></form>")

关于javascript - jQuery 使用 text() 获取包含单引号的文本无法正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35533239/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com