- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我对以下代码有一个奇怪的问题:http://jsfiddle.net/rc1chhtd/4/
实际上,第一次单击链接时,会为每个 div 而不是最后一个调用 collapse 方法。然后一切正常。有什么提示吗?
HTML
<div class="col-md-3">
<p class="lead">Menu</p>
<div id="sidebar" class="list-group">
<a href="#" class="list-group-item active" name="dashboard">
<i class="icon-dashboard"></i> Dashboard
</a>
<a href="#" class="list-group-item" name="a-s-c">
<i class="icon-group"></i> Arte Storia e Cultura
</a>
<a href="#enogastronomia" class="list-group-item" data-parent="#sidebar" name="enogastronomia">
<i class="icon-group"></i> Enogastronomia
<span class="badge bg_danger">3</span>
</a>
<div id="enogastronomia" class="list-group subitem collapse">
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 1
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 2
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 3
</a>
</div>
<a href="#" class="list-group-item" name="artigianato">
<i class="icon-group"></i> Artigianato
</a>
<a href="#dovedormire" class="list-group-item" data-parent="#sidebar" name="dovedormire">
<i class="icon-group"></i> Dove Dormire
<span class="badge bg_danger">4</span>
</a>
<div id="dovedormire" class="list-group subitem collapse">
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 1
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 2
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 3
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 4
</a>
</div>
<a href="#attivita" class="list-group-item" data-parent="#sidebar" name="attivita">
<i class="icon-group"></i> Attività
<span class="badge bg_danger">4</span>
</a>
<div id="attivita" class="list-group subitem collapse">
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 1
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 2
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 3
</a>
<a href="#" class="list-group-item">
<i class="icon-caret-right"></i> Sub 4
</a>
</div>
<a href="#" class="list-group-item" data-parent="#sidebar" name="meteo">
<i class="icon-group"></i> Meteo
</a>
<a href="#" class="list-group-item" data-parent="#sidebar" name="numutili">
<i class="icon-group"></i> Numeri Utili
</a>
<a href="#" class="list-group-item" data-parent="#sidebar" name="trasporti">
<i class="icon-group"></i> Trasporti
</a>
</div>
</div>
JavaScript
$( document ).ready(function() {
$('#contenuti').load('dashboard.php');
});
$('.list-group-item').click(function (){
var clicked=this;
$(".list-group a").each(function() {
$(this).removeClass("active");
$(this).next('div').collapse('hide');
if($(this).attr("name")==$(clicked).attr("name")){
$('#contenuti').load($(this).attr("name")+'.php');
$(this).addClass("active");
$(this).next('div').collapse('show');
}
});
});
最佳答案
有一些样式问题,但我建议您将逻辑更改为更像这样:
JSFIddle:http://jsfiddle.net/TrueBlueAussie/rc1chhtd/7/
$(document).ready(function () {
$('#contenuti').load('dashboard.php');
$('.list-group-item').click(function () {
var $clicked = $(this);
// Hide any active divs (only)
$(".list-group a.active").removeClass("active").next("div").collapse("hide");
// Find the target anchor based on the name attribute in the clicked item
var $targeta = $('.list-group a[name="' + $clicked.attr("name") + '"]').addClass("active");
// Load the panel based on the clicked item
$('#contenuti').load($(this).attr("name") + '.php');
// then open the clicked div
$targeta.next('div').collapse('show');
});
});
如果您有机会动态添加项目,请将点击处理程序更改为委托(delegate)事件处理程序附加到不变的祖先元素 - document
是默认值):
$(document).on('click', '.list-group-item', function () {
更新:collapse
中似乎存在错误。如果该项目从未显示/折叠,则调用 collapse("hide")
似乎会将它们打开。我更改了代码以仅隐藏“事件”链接。
关于javascript - 第一次单击 href 时出现 .collapse() 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26116523/
我正在尝试通过 node.js 中的 puppeteer 抓取数据 目前,我正在寻找一个脚本,用于抓取 well.ca 某个部分中的所有数据 现在,这是我试图通过 node.js 实现的方法/逻辑 1
href=""、href="#" 和 href="javascript:void(0)" 之间有什么区别? 它们有哪些不同的用途,什么时候一个比另一个更好? 最佳答案 href=""将重新加载当前页面
这是html代码: Delivery Schedule Route Abstract Report 我有 href 值。使用 href 值,我应该找到 anchor 标记并使用 jQuery
我不确定是不是因为我使用的是 Wordpress 但 this.href 没有返回包含它们的项目的 href(例如在“联系人”上它返回 http://www.domain.net/undefined反
这个问题在这里已经有了答案: Is there a "previous sibling" selector? (33 个答案) 关闭 8 年前。
这个问题在这里已经有了答案: Are you allowed to nest a link inside of a link? (9 个回答) 关闭 6 年前。 我有一个可点击的面板,其中有一个工具
我的 css 如下所示 ul.sometclass li a { display:inline-block; } 我的 html 看起来像 outer test
我没看明白这段代码是什么意思? a[href*=#]:not([href=#]) 谢谢! 最佳答案 简单地: a[href*=#] 获取 href 中包含 # 的所有 anchor (a)。 但是有:
document.getElementById("IDOFELEMENT"); 将其转换为链接的正确方法是什么? 我可以写吗 document.getElementById("IDOFELEME
所以我在我的 Next JS 应用程序中遇到了这个奇怪的问题,我导入了谷歌字体,如下所示 在我的浏览器中显示的不是 href,而是 data-href="...",所以问题是谷歌无法将此识别为链接
我想获取所选选项的 href 值,以便我现在可以转到使用按钮选择的链接。 这是我的代码
我正在尝试获取我的一个链接的 href 并将其克隆/复制到另一个链接的 href 这是我正在尝试的 var link = $('.topbook'); var link2 =
我基本上是试图从一个链接获取href,然后将其填充到另一个链接中: HTML: Link to thing Link to duplicate 脚本: $('.main-link').attr('hr
我使用的 CSS 工具提示必须包含在“a href”中才能工作。 iPad [add_to_cart_anchor item="ipad"]purchase the iPad[/add_to_c
我有一个以前是纯文本的电子邮件正文,但现在我把它变成了 HTML。电子邮件是使用多种方法生成的,但没有一种方法易于转换。 我有的是: Some content emailaddress@somethi
我正在尝试从网页中抓取数据,然后通过提取下一页的 href 来转到下一页。 但是,在这种情况下,包含下一页的 href 的标签是 href='#next'。使用 Chrome 检查此元素后,当我将鼠标
在我的 html 页面中,我看到一个链接,其“查看源代码”代码如下: 当我将鼠标悬停在链接上并单击它时,我看到了一个有效链接。但我无法找到生成此 URL 的位置和方式。我发现类 a.view 是在其
看完这篇文章net.tutsplus.com/tutorials/javascript-ajax/14-helpful-jquery-tricks-notes-and-best-practices/我
我想用 SvelteKit 构建一个 Web 应用程序,其中一页列出所有项目(带有潜在的搜索查询参数),然后每个单独的项目一页。如果我必须使用后端生成的所有内容以老式方式构建它,我的路径将是 /ite
此 js 搜索包含 page=fleet 的 href其中: var links = document.querySelectorAll('a[href*="page=fleet"]'); var h
我是一名优秀的程序员,十分优秀!