日期:2014-05-16  浏览次数:20388 次

求助,js url传递参数
<td><input type="button" onClick="javascript:location.href='test.asp?a=<%=rs("a")%>&b='+ document.getElementById('b').value;" value="cc"/></td>

能得到a的值,b总是空,是不是哪里写错了?TKS
------解决方案--------------------
测试页面,可以得到输入值
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
</script>
</head>
<body>
<input type="button" onClick='javascript:location.href="test.asp?a=<%=rs(\"a\")%>&b="+ document.getElementById("b").value' value="cc"/>
<input type="text" id="b" />
</html>