如何使用JavaScript通过GET方法将url参数发送到PHP?

时间:2013-02-01 16:00:07

标签: php javascript

这是我的JS代码......

function da(){
    var a=document.forms["user"]["age"].value;
    if(this.age.value < 18 || this.age.value > 85) {
        alert('some text...');
        this.age.focus();
        return false;
    }else{
        window.location.href='file.php?&'+a;
    }
}

它只是将参数传递给我站在的页面... 这是形式以防万一(我是一个初学者记住)...

<form name="buscar" method="GET"> Some text <input                 onmouseover="Aj2('d');document.getElementById('box').style.display='block';" onmouseout="clean();" type="number" name="age" id="age" > Age <div id="help" ><!-- --> </div><br />
<input type="button" value="Send" onclick="da()">
</form>

这里的Aj2功能不是问题...... 谢谢你们的任何帮助......

2 个答案:

答案 0 :(得分:0)

有些事我不是专家。

$('button name').on('click', function() {
   var age_ = document.getElemenetById('age');
   $.get('path of your file', {'age' : age_}, function(resp) {
        // code to pass parameter
        alert(age_);
   });
});

答案 1 :(得分:0)

只是想一想,如果你实际上不需要重新加载页面而只是想从PHP获取javascript代码的信息,你可以做类似的事情

<script>

<?
    $phpvariable = "my variable";
?>

var jsvariable = <?php echo json_encode($phpvariable); ?>;

</script>

现在,javascript变量jsvariable将保存PHP变量的内容。