gpt4 book ai didi

javascript - 用于评论的可编辑 div

转载 作者:行者123 更新时间:2023-12-03 11:43:45 25 4
gpt4 key购买 nike

我需要在我的网站上发表评论。我想动态编辑此评论。我的意思是,现在我在 div 中有我的评论。点击“编辑”span后,我想将这个div更改为可编辑的文本区域,修改后就可以发送了。因此,发送后我需要返回以在 div 中显示此新评论。

我怎样才能实现这个目标?

这是 http://jsfiddle.net/4d56n5h4/

最佳答案

更新:

你的意思是像 THIS

$('.commentEdit').click(function(){
if($(this).text()=='Edit'){ $(this).parent().prev('.commentDescription').prop('contenteditable',true);
$(this).parent().prev('.commentDescription').focus();
$(this).text('Save');
}
else{
$(this).text('Edit');
//code to save the comment
}
});
$('.commentDescription').blur(function(){
$(this).prop('contenteditable',false);
});

可以保存对.commentDescription的blur事件的评论

关于javascript - 用于评论的可编辑 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26147194/

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