0
我正在使用2個Horizonlight幀。在頂部框架我使用Jquery製表符。我希望每當我點擊該選項卡時,結果頁面應該在下面的框架中打開。但它不起作用。任何人都可以幫助我嗎? Jquery Tabs支持框架嗎?只要在使用Jquery的選項卡上單擊,結果頁面不會在目標框架中打開。在同一幀中打開
我正在使用2個Horizonlight幀。在頂部框架我使用Jquery製表符。我希望每當我點擊該選項卡時,結果頁面應該在下面的框架中打開。但它不起作用。任何人都可以幫助我嗎? Jquery Tabs支持框架嗎?只要在使用Jquery的選項卡上單擊,結果頁面不會在目標框架中打開。在同一幀中打開
的index.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<frameset rows="80,*" frameborder="no" border="0" framespacing="0">
<frame src="top.html" name="topFrame" scrolling="No" noresize="noresize" id="topFrame" title="topFrame" />
<frame src="cont.html" name="mainFrame" id="mainFrame" title="mainFrame" />
</frameset>
<noframes><body>
</body>
</noframes></html>
的top.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
<script language="JavaScript">
$(function(){
$("#test").click(function(){
alert($(window.parent.document.frames["mainFrame"].document).find("body").html());
$(window.parent.document.frames["mainFrame"].document).find("body").html("<div>this is a test</div>");
alert($(window.parent.document.frames["mainFrame"].document).find("body").html());
});
});
</script>
</head>
<body>
<button id="test">test</button>
</body>
</html>
cont.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div>empty</div>
</body>
</html>
請代碼您使用的初始化標籤發佈。 – ekhaled 2009-10-20 20:55:08