我需要刷新我的php。我的onclick之后的页面,但在点击我必须发送一些值 它可以吗?
这是我的代码:
<a class="btn btn-warning btn-sm" href="" onclick="this.href='insertaCotizacion.php?pais=' + document.getElementById('pais').value + '&proyecto=' + document.getElementById('proyecto').value + '¬as=' + document.getElementById('notas').value + '&formapago=' + document.getElementById('formapago').value + '&fechaentrega=' + document.getElementById('fechaentrega').value + '&flete=' + document.getElementById('flete').value + '&instalacion=' + document.getElementById('instalacion').value + '&venta=' + document.getElementById('venta').value + '&total=' + document.getElementById('total').value; return true/*I WANNA REFRESH MY PAGE HERE*/">Realizar</a> //
我看到it,但我不明白
答案 0 :(得分:1)
使用location.reload();
重新加载页面。
答案 1 :(得分:1)
如果您需要使用params重新加载页面,请使用window.location.href
示例:
<html>
<head>
<script>
function reloadUrl(){
var url=insertaCotizacion.php?pais=' + document.getElementById('pais').value + '&proyecto=' + document.getElementById('proyecto').value + '¬as=' + document.getElementById('notas').value + '&formapago=' + document.getElementById('formapago').value + '&fechaentrega=' + document.getElementById('fechaentrega').value + '&flete=' + document.getElementById('flete').value + '&instalacion=' + document.getElementById('instalacion').value + '&venta=' + document.getElementById('venta').value + '&total=' + document.getElementById('total').value;
window.location.href=url;
}
</script>
</head>
<body>
<a href="#" onclick="javascript:reloadUrl();">LINK</a>
</body>
</html>