Sunday, November 25, 2007

prototype.js Ajax.RequestのonCompleteにパラメータ

はてなに出ていたソースをそのまま引用です。

http://q.hatena.ne.jp/1174489396
javascriptってすごいですね。

<html>
<head>
<title></title>
<script language="javascript" src="prototype.js" charset="utf-8"></script>
<script language="javascript">
<!--
function ajax1(id){
new Ajax.Request(
'test.txt',
{ onComplete : function(req){
Seiko(id, req);
}
});
}
function Seiko(id, req){
$(id).innerHTML = req.responseText;
}
//-->
</script>
</head>
<body>
<div id="test"></div>
<button onclick="ajax1('test');">TEST</button>
</body>
</html>