0

这是我的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 功能不是这里的问题...感谢您可能获得的任何帮助...

4

2 回答 2

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_);
   });
});
于 2013-02-01T16:12:30.570 回答
0

只是一个想法,如果您实际上不必重新加载页面而只是想从 PHP 获取您的 javascript 代码的信息,您可以执行类似的操作

<script>

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

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

</script>

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

于 2013-02-01T16:13:43.623 回答