path:location.href参数混进了post参数里面了?
window.location.href 传参数怎么取
展开全部
可以这样:
window.location.href后面带参数怎么加
<form action="#"><br> <input type="text" name="d_id" id="d_id"/><input type="text" name="d_name" id="d_name"/><br> <input id="btn" type="button" value="sublimt"/><br></form><br><script><br> document.getElementById('btn').onclick = function(){<br> var d = document.getElementById('d_id').value;<br> var name = document.getElementById('d_name').value;<br> location.href = 'a.asp?d_id=' + d + '&d_name=' + name;<br> }<br></script><br><br>从安全角度来说,可以采用这种post的方式来提交参数:<br><br><form action="a.asp" method="post" onsubmit="return send();"><br> <input type="text" name="d_id" id="d_id"/><input type="text" name="d_name" id="d_name"/><br> <input id="btn" type="submit" value="sublimt"/><br></form><br><script><br> function send(){<br> if(document.getElementById('d_id').value.length < 1){<br> alert('请正确输入!');<br> return false;<br> }<br> return true;<br> }<br></script>
location.href 能是post方式吗
不能,用ajax吧,如果要是用jquery的话,实现ajax很简单
location.href 传参数问题
改为:location.href="RegistOK.aspx?regID=" + name +"®Pwd="+pwd+"®Sex="+sex;
你缺少 & 符号 参数之间要加&