- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在网站上http://www.ryancoughlin.com/hp/?c=posters ,我在左侧使用此代码:
$(".menu-header").click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
如果您打开其中一个并点击另一个部分,它会关闭,有什么方法可以保持该状态打开吗?
最佳答案
您的部分保持良好的打开状态,但当您打开新页面时,它们会关闭。
但是,您的问题并没有消除这两个问题之间的歧义。
要使其在这些页面上工作,您可能想要做的是注入(inject)一个变量来确定您所在的页面。
jQuery(function($){
var matches;
if( matches = (new String(document.location)).match(/\?c=\w+/) ) {
$("a[href=" + matches[0] + "]").parents("ul").toggle();
}
});
不过可以作为短期解决方案。
所以完整的代码将是(带注释)
/* Document Ready, $ = jQuery inside this scope regardless */
jQuery(function($){
/* Bind the click event on all the menus, then hide them all. */
$(".menu-header").click(function() {
$(this).next().toggle('slow');
return false;
}).next().hide();
/*
* Check to see if we're already on a sub-menu-item
* By looking in the current pages url for the string '?c=somewordhere'
*/
var matches;
if( matches = (new String(document.location)).match(/\?c=\w+/) ) {
/*
* If we are, search the page for a link to that submenu item
* ( by looking for the '?c=somewordhere' part in the hrefs )
* and find its parent menu `ul` and show it.
*/
$("a[href=" + matches[0] + "]").parents("ul").toggle();
}
}); # End Document Ready Scoping.
为了清楚起见,
jQuery(function($){
});
是一个非常方便的速记符号,功能非常强大。相当于做
jQuery(document).ready(function($){
});
这几乎相当于做
jQuery(document).ready(function(){
var $ = jQuery;
});
这以一种故障安全的方式保证“$”将是该函数内的 jQuery,而不管页面上的其他所有内容。
关于jquery - 记住上次打开状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/691013/
之前看到一些类似的问题,想弄清楚。 在this article ,据说异步调用“没有线程”。 然而,in another one ,据说 Here, however, we’re running th
我为我公司的平板电脑(SAMSUNG Galaxy Tab Active2)开发了一个简单的软件,自上周五(2018 年 11 月 23 日)以来,它无法正常工作。我检查了该应用程序的所有功能,其中有
我正在使用 hadoop map-reduce 作业进行一些文本处理。我的工作已完成 99.2%,并停留在上一个 map 工作上。 map 输出的最后几行如下所示。上次发生此问题时,我尝试打印出从 m
上次 Ubuntu 更新后有人对 Docker 有疑问吗?我有 2 个由 docker-compose 在 ubuntu18.04 中运行的项目。两个项目都运行良好,但在 *.yml 中进行 0 次更
SQL Developer 在表中显示公共(public)同义词的创建和上次 DDL 时间: CREATED 15-AUG-09 LAST_DDL_TIME 15-AUG-09 O
我正在使用带有以下插件的 mavenized 库项目: com.jayway.maven.plugins.android.generation2
我正在使用 Jssor Slider 作为轮播。在 Google Chrome 上次更新到版本 45.0.2454.85 之前,它一直运行良好。想法是它不显示图像。目前,它们位于标签中,可在 Safa
我是一名优秀的程序员,十分优秀!