gpt4 book ai didi

javascript - 将 Javascript 变量附加到 Jquery AJAX URL

转载 作者:行者123 更新时间:2023-11-28 15:34:19 26 4
gpt4 key购买 nike

我想将 textboxValue 附加到 URL - test.php

URL 应该是 test.php?variable="textboxValue"

var textboxValue = document.getElementById("textbox").value;

window.onload = function() {

window.addEventListener('shake', shakeEventDidOccur, false);

//define a custom method to fire when shake occurs.
function shakeEventDidOccur () {
$.ajax({url:"test.php?value=var textboxValue"});

}

我该怎么做?

最佳答案

非常确定您可以使用 data 属性来完成此类事情...

$.ajax({
url: "test.php",
data: { value: textboxValue }
});

关于javascript - 将 Javascript 变量附加到 Jquery AJAX URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26142473/

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