Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AJAX を使用して次のようなことを行うにはどうすればよいですか。
<input type="text" name="test"> <?php $test = $_POST['test']; //need to set the var "on the fly" echo $test; ?>
ユーザーが「test」という名前の入力に設定したテキスト/数字で、php var $test が自動更新される必要があります。
実際の使用例: test
Jquery ライブラリの AJAX メソッドを使用できます
$.ajax({ type: "POST", url: "some.php", data: { test: "testData"} }).done(function( msg ) { alert( "Data Saved: " + msg ); });