使用jquery函数通过$ _GET传递值

时间:2014-05-26 07:29:34

标签: javascript php jquery

我想通过$_GET使用jQuery函数传递下拉值

这是我的代码:

<div class="span2 text-right">
    <label class="f-s15">Choose Exam to take:</label>
</div>
<div class="span3">
    <select name="test_tag" id="test_tag">
    <?php
    foreach($array2 as $value2){ ?>
         <option value ="<?php echo $value2['_id']; ?>"><?php echo $value2['score_type']; ?> </option>
    <?php
       }
       ?>
   </select>

这是我的jQuery函数:

function passTag() {
    var selectedvalue = jQuery('#test_tag').val();
    location.href="test_new.php?id="+selectedvalue;
}

现在当我print_r($_GET)时,我什么也得不到......

1 个答案:

答案 0 :(得分:3)

试试这个

   jQuery(document).ready(function(){
      jQuery("#test_tag").change(function(){
          var selectedvalue = jQuery('#test_tag').val();
          location.href="test_new.php?id="+selectedvalue;
       })
    })