Jquery 插件/scop 问题
对于 jquery,我是一个相对新手;我的问题涉及范围,也许还涉及插件,如果有人有耐心将我链接到有用的东西。
下面的代码可以工作,但是我必须将脚本放在同一个 div 中才能真正工作。我无法将其移至页面顶部,或者理想情况下,出于 CMS 集成/可读性的目的,移至另一个库/源文件。任何指点将不胜感激,谢谢。
<a id="hide" href="#" style="z-index:20;">hide</a>
<a id="show" href="#" style="z-index:20;">show</a>
<div id="block" style="position:absolute;background:#fff;width:450px;height:450px;">
</div>
<div id="myBox" style="width:450px;height:450px;" >
<ul id ="menuElem" class="CMSListMenuUL">
<li><a href="#">a</a></li>
<li><a href="#">b</a></li>
<li><a href="#">c</a></li>
</ul>
</div>
<script>
$("#show").click(function () {
$("#block").fadeOut(1000);
return false;
});
$("#hide").click(function () {
$("#block").fadeIn(1000);
return false;
});
</script>
I am a relative newbie when it comes to jquery; my question pertains to scope and perhaps to plugins if anyone has the patience to link me to something useful.
The code below works, however I must put the script in the same div for it to actually work. I can't move it to the top of the page, or, ideally, to another library/source file for the purposes of CMS integration/readability. Any pointers would be appreciated, thank you.
<a id="hide" href="#" style="z-index:20;">hide</a>
<a id="show" href="#" style="z-index:20;">show</a>
<div id="block" style="position:absolute;background:#fff;width:450px;height:450px;">
</div>
<div id="myBox" style="width:450px;height:450px;" >
<ul id ="menuElem" class="CMSListMenuUL">
<li><a href="#">a</a></li>
<li><a href="#">b</a></li>
<li><a href="#">c</a></li>
</ul>
</div>
<script>
$("#show").click(function () {
$("#block").fadeOut(1000);
return false;
});
$("#hide").click(function () {
$("#block").fadeIn(1000);
return false;
});
</script>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下
这会等待脚本运行,直到文档加载完毕。
Give this a try
This waits for the script to run until after the document is already loaded.