嘿所有,
我阅读和阅读,我觉得我错过了一些东西,所以我要问。
我想做什么:
使用jquery从页面获取url参数。
function findIt() {
$.ajax({
url: "${url.context}/itemlist/getitemlist",
params: "foobar",
context: document.body,
success: function (data) {
$('#results').html(data);
}
});
};
我发送参数的网址是我需要使用jquery获取参数的地方。
e.g。在Php:
$foo = $_GET['name']
在jquery ?????
我知道这必须简单,但我迷失了。任何帮助将不胜感激。