我有一个页面,我想在打开时发布一些数据
$(document).ready(function() {
$.post( "suggestions.php", { 'textbox': 'Yes'} );
显然,'是'只是我测试的占位符,只是为了看它是否发布任何内容。奇怪的是,当我发布到不同的php页面时,它可以工作,当我发布到" Suggestions.php"来自正常的非AJAX形式
<?php
session_start();
include_once("php/connect.php");
?>
<!doctype html>
<html>
<head>
<title>Try that</title>
</head>
<body>
<form action='suggestions.php' method='post'>
<input type='text' name='textbox' value='Yes' />
<button type='submit'>go!</button>
</form>
</body>
</html>
它有效,然而,它并没有结合。
答案 0 :(得分:0)
好吧,我最终切换到GET方法。原始页面只发送&#34;文本框&#34;信息到一个间隔加载suggestions.php?textbox= + e
的函数。