如何刷新我的php页面:onclick

时间:2014-11-06 22:30:21

标签: php refresh

我需要刷新我的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 + '&notas=' + 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,但我不明白

2 个答案:

答案 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 + '&notas=' + 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>