我在页面 index.html 中有一个链接,我需要打开一个位于另一个名为 index2.html 的页面中的 div,但我做不到。
我的代码是这样的:
index.html 中的链接
<a href="#modal" id="open-modal">Open Modal</a>
index2.html 页面中的内容:
<div id="modal" class="style-modal">
<a id="close_modal" href="#" title="close modal"></a>
<div id="content-modal">
<p>Content here</p>
</div>
</div>
这是我在 efect.js 中的代码:
$(document).ready(function(){
$("#open_modal").click(function(){
$( '#modal' ).fadeIn();
$( '#bg-modal' ).fadeTo( 500, .5 );
});
$("#close_modal").click(function(){
$( '#modal, #bg-modal' ).fadeOut();
});
});
请帮我。