我希望将一个var附加到一个url,其中包含一个我有点击事件的函数。
说网址是www.example.com
运行该功能后,它就变成了。
www.example.com?folder=beats
我有一个函数抓取正确的文件夹值,但需要将其附加到当前页面网址。
function fileDialogStart() {
$folder = $('#ams3Folder').val();
}
任何帮助
答案 0 :(得分:8)
function fileDialogStart()
{
var newURLString = window.location.href +
"?folder=" + $('#ams3Folder').val();
window.location.href = newURLString; // The page will redirect instantly
// after this assignment
}
有关详细信息,请转到here。
答案 1 :(得分:3)
function fileDialogStart() {
$folder = $('#ams3Folder').val();
window.location.href = window.location.href + $folder
// window.location.href = window.location.href + '?test=10';
}