window.location.href;为什么href后面不加括号。。
window.location.href;为什么href后面不加括号。。
window.location.href;为什么href后面不加括号。。
2016-08-06
<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>
一个是属性 , 一个是方法 。 多多揣摩
举报