预览textarea的简单方法?我在下面的代码不会将<em>i'm italic!</em>
格式化为斜体。我不是很擅长js / jquery,我不知道.replace()部分是否需要关注或者是什么。我用Google搜索并在这里搜索,但找不到简单的答案。
$('.comment-block textarea').bind('blur keyup',function() {
$('#comment-preview').text($('#comment-field').val());
$('#comment-preview').html($('#comment-preview').html().replace(/\n/g,'<br />'))
});
答案 0 :(得分:2)
$('#comment-preview').html($('#comment-field').val().replace(/\n/g,'<br />'));
没有削减它?
答案 1 :(得分:1)
你可以尝试:
$('#comment-preview').html($(this).attr("value"));
在绑定函数
中答案 2 :(得分:0)
当你调用$('#comment-preview')。text()时,它会转义HTML标记。如果你做第二行
$('#comment-preview').html($('#comment-field').val());
它会起作用。
答案 3 :(得分:0)
这是你所期待的吗? $('#comment-preview')。html(''$ $('#comment-field')。val()+'