window.location.href 传参比较长怎么办

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window.location.href 传参比较长怎么办相关的知识,希望对你有一定的参考价值。

参考技术A 您好,您需要的只是一个明传址,这种方式会把参数以明文的方式传过去,这样是不安全的。虽然在技术上是可以实现的。
<form action="#">

<input type="text" name="d_id" id="d_id"/><input type="text" name="d_name" id="d_name"/>
<input id="btn" type="button" value="sublimt"/>
</form>
<script>
document.getElementById('btn').onclick = function()
var d = document.getElementById('d_id').value;
var name = document.getElementById('d_name').value;
location.href = 'a.asp?d_id=' + d + '&d_name=' + name;

</script>
========================================

<form action="a.asp" method="post" onsubmit="return send();">
<input type="text" name="d_id" id="d_id"/><input type="text" name="d_name" id="d_name"/>
<input id="btn" type="submit" value="sublimt"/>
</form>
<script>
function send()
if(document.getElementById('d_id').value.length < 1)
alert('请正确输入!');
return false;

return true;

</script>

以上是关于window.location.href 传参比较长怎么办的主要内容,如果未能解决你的问题,请参考以下文章

window.location.href后面带参数怎么加

window.location.href跳转传参并接收参数

window.location.href跳转传参并接收参数

window.location.href跳转带中文参数

JS中,location的用法?能不能location到.do?可不可以传参?如何传参?

JS普通浏览器页面传参