<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <script type="text/javascript" src="js/prototype.js" ></script> <script type="text/javascript" src="js/responsexml.js" ></script> <title>responseXML</title> </head> <body> <form> <input type='button' value='そのまま実行(XML)' onclick='sendRequest("php/responsexml.php", showXML, "xml" )' /> <br /> <input type='button' value='修正版の実行(XML)' onclick='sendRequest("php/responsexml.php", showNormalizeXML, "xml" )' /> <br /> <input type='button' value='そのまま実行(JSON)' onclick='sendRequest("php/responsexml.php", showJSON, "json" )' /> </form> <div id='disp'></div> </body> </html>