这似乎需要改变
$('index.html#target').load('user.php');
至
$('#target').load('user.php');
编辑:好的,我将添加一些希望有用的代码,并带有一些非常基本的标记。这不是特定于您的代码的,但这个概念应该很有用,并且只用几个 html 页面就可以测试,没什么特别的。
我将说明的是如何从一个页面、另一个页面调用脚本。我将拥有一个称为主页面的页面/窗口,以及另一个称为子页面的页面/窗口。这些都不是非常花哨的标记。
他们将使用一些非常基本的脚本调用进行交互,甚至将信息来回传递给彼此。我将首先介绍每个的标记,然后是每个中的脚本。每个页面的标题中都有 jQuery 链接。
我的主要观点是,只要您获得对每个页面的引用,您就可以使用它的修改版本来告诉一个页面使用从另一个页面实例化的脚本/动作来做某事。在我的示例中,我使用 window open 和 window.opener 作为此参考。
主页标记:页面是“TestCallbackmain.html”
<body>
<div class='pagetop'>
Test Callback Main
</div>
<div class='pageDetailContainer'>
<div class='pageDetail'>
Move on folks, nothing to see here
<div id='detailContent'>
</div>
<button id='closeChildy'>
Close Childy Window</button>
<button id='openChildy'>
Open Childy Window</button>
<div id='childSees'>
me empty</div>
</div>
</div>
</body>
子页面标记:这称为“TestCallBack.html”
<body>
<div class='pagetop'>
Test Callback Child
</div>
<div class='pageDetailContainer'>
<div class='pageDetail'>
<div id="achildy">
HereIBe
<div id="inchildy">
I am childy text
</div>
</div>
<button id='pleaseKillMe'>
Have Parent Close Me</button>
<div id='textHolder'>
</div>
<div id='callbackTextHold'>
</div>
</div>
</div>
Howdy
</body>
主页面脚本:
function logNewWindow(newWindow, JQnewWindowDoc) {
var mychildText = JQnewWindowDoc.text(); //all the child doc text
var innerChildText = $("#inchildy", JQnewWindowDoc).text(); // one element text
var gotback = newWindow.childCallBack("CHILD TEXT:" + mychildText + " INNER:" + innerChildText);
$('#callbackTextHold').text("GOT:" + gotback); //child sent me this text from childCallBack
};
var AWindow;
function openChild() {
AWindow = window.open("TestCallBack.html");
};
$(document).ready(function() {
$('#detailContent').text('Loaded JQ');
$('#closeChildy').click(function() {
AWindow.close();
});
$('#openChildy').click(function(e) {
openChild();
e.stopImmediatePropagation();
});
});
子页面脚本:
var ct;
function childCallBack(passstuff) {
$('#textHolder').html('ct:"' + ct + '"<br /> CHILD GOT:(' + passstuff + ")");
return ct;
};
$(document).ready(function() {
ct = $("#achildy").text();
window.opener.logNewWindow(window, $(document));
$('#childSees', window.opener.document).text('You been Had by child');
$('#pleaseKillMe').click(function() {
$('#closeChildy', window.opener.document).click();
});
});