我有这个jquery代码我希望每次单击按钮时都会在新行上打印。
<script language="javascript">
$('.example-default-value').each(function () {
var default_value = this.value;
$(this).focus(function () {
if (this.value == default_value) {
this.value = '';
}
});
$(this).blur(function () {
if (this.value == '') {
this.value = default_value;
}
});
});
function example_append() {
$('#step').append($('#example-textarea'+ /n).val());
}
</script>
答案 0 :(得分:1)
我会假设您指的是这种方法,其余的代码是无关紧要的?
function example_append() {
$('#step').append($('#example-textarea').val() + "<br />");
}
这是HTML,因此您需要为换行符添加<br />
。
答案 1 :(得分:0)
添加&lt; br&gt;你的追加。