我需要向数据添加什么:并使其发送消息文本字段的值
<html>
<head>
<meta charset="utf-8">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
</head>
<body>
<iframe name='chatWindow' id='chatWindow'frameborder="no" height="935" width="1910" src='iframe.php'>Chat</iframe>
<br> <input type='text' id="text" name='message'>
<input type='button' id="button" value="send">
<script>
$(document).ready (function () {
$("#button").bind("click", function (){
$.ajax ({
url: "iframe.php",
type: "POST",
data: ({}),
dataType: "PHP"
});
});
});
</script>
</body>
</html>
你
input
的 'a 有一个标识符id='text'
,用它来引用。将其值存储在变量之前$.ajax
:只有在 dataType 中写入数据将被发送到服务器的格式,在您的情况下
json
: