[JavaScript]


この日記のはてなブックマーク数 このエントリーを含むはてなブックマーク
サーバとの通信をするにはprototype.jsのAjax.Requestを使うと便利。

[書式]
new Ajax.Request("./ファイルまでのパス", 
	{method: "post", parameters: フォームに渡すパラメータ, onSuccess: 
		function(httpObj) {
		var contents = new Object();
		contents = httpObj.responseText.split( String.fromCharCode(10) ); // LFコードにてsplit
		document.getElementById('result').value = contents[0];
		}
	});


広告