这是我-6ren">
gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 19:48:40 25 4
gpt4 key购买 nike

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

这是我的代码:

<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) 时,我什么也没得到...

最佳答案

试试这个

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

关于javascript - 使用 jquery 函数通过 $_GET 传递值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23864894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com