.classpath
这将导致: 观看此视频xxx。
我想在新行中添加更多句子... 屁股示例......
<script>
jQuery(document).ready(function($){
$('#user-submitted-title').on('keyup',function(e){
$('#user-submitted-content').val('Watch this video'+ $(this).val() +'.');
});
});
</script>
这一切都起作用了,怎么样?
答案 0 :(得分:0)
不确定如何设置textarea内容,但如果使用jQuery val方法,\ n在Firefox和IE(包括IE8)中一致地工作:
试试这个:val('观看此视频'+ $(this).val()+'。\ n')
var txt = $(“textarea#idhere”); txt.val(txt.val()+“\ nSomething here \ n \ nAgain”); 检查以下链接,它的答案是为了获得更多帮助!