<script type="text/javascript">
$('#buttonclick').click(function(){
fulltext=$('#fulltext').val();
$('#display').load('action.php?fulltext='+fulltext);
});
});
</script>
<input type='button' id='buttonclick' value='Load'>
<textarea rows="30" cols="70" id='fulltext' name='fulltext' style="resize: none;">
</textarea>
<div id='display'></div>
action.php文件如下
<?php
$abcd= $_GET['fulltext'];
echo '<pre>'.$abcd.'</pre>';
?>
我想要的只是在 div(id='display') 中以与 (id=fulltext) 中写入的格式相同的格式显示文本区域的内容。例如:
he is who.
who is he.
在我的情况下,文本区域的上述内容被附加在一起并显示为
he is who. who is he
那就是格式改变了。有什么解决办法吗?