prototype 请求到另一个页面
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript" src="js/prototype.js"></script>
<script type="text/javascript">
function test111(){
//var user = a;
//var url = ;
new Ajax.Request(
"index.jsp",
{method:"post",
//parameters:"user="+user,
onComplete:function(){
alert();
}
}
}
);
}
</script>
</head>
<body>
<input type="button" value="testOne" onclick="test111();"/>
</body>
</html>有没有新学prototype的大家一起看看,点击按钮跳到一个请求到一个jsp页面,现在点击没反应。
------解决方案--------------------prototype没用过
点击按钮跳到一个请求到一个jsp页面?
是想异步请求一个页面 还是 跳转到一个页面,没听明白
------解决方案--------------------跳转用window.open("index.jsp")