$.ajax({
type: 'get',
url: 'message.php',
data: 'msg=' + msg + '&fromname=' + fromname + '&fromemail=' + fromemail,
beforeSend: function() {},
success: function() { }
});
我使用以下方法通过 ajax 将变量发送到 message.php message.php 然后使用“ data
”更新数据库(mysql)。我遇到的问题是它将 2 行或更多行更改为 1 个连续行。所以它会跳过返回休息时间。这是文本区域:
<textarea class="textar" onchange="save();" onclick="this.value=''" cols="45" rows="5">What would you like to say in the email?</textarea>
请问有什么想法吗?