我有一个页面 'index.html' 带有这样的 jquery 加载方法:
$(document).ready(function(){
var user = 10;
$('#content").load('profile.html', { id: user });
});
我的问题是如何在页面“profile.html”中获取此变量id 。
谢谢你。
我有一个页面 'index.html' 带有这样的 jquery 加载方法:
$(document).ready(function(){
var user = 10;
$('#content").load('profile.html', { id: user });
});
我的问题是如何在页面“profile.html”中获取此变量id 。
谢谢你。