gpt4 book ai didi

javascript - 如何在 window.location.href 中传递 QueryString?

转载 作者:行者123 更新时间:2023-12-02 06:36:19 26 4
gpt4 key购买 nike

我写了下面的javascript函数

function getval(sel)
{
window.location.href = "Posts?Category=<%= sel %>";
}

但是查询字符串中不考虑sel变量的值..

取而代之的是像下面这样的值。

...../Post/Posts?Category=%3C%=%20sel%20%%3E

谁能帮帮我???

最佳答案

因为javascript不理解jsp scriptlet,

尝试,

window.location.href = "Posts?Category=" + sel;

关于javascript - 如何在 window.location.href 中传递 QueryString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17653110/

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