单击链接时,我希望将哈希信息传递给子函数。请看下面。现在,当我点击链接时,URL显示为/ #undefined。
$j(window.location.hash).collapse('show');
$j('a[data-toggle="collapse"]').click(function() {
$j('.collapse').on('show.bs.collapse', function(e) {
window.location.hash = $j(this).attr('href');
});
});
答案 0 :(得分:0)
传递它,就像这样:
$j(window.location.hash).collapse('show');
$j('a[data-toggle="collapse"]').click(function () {
var href = $j(this).attr('href');
$j('.collapse').on('show.bs.collapse', function (href) {
window.location.hash = href;
});
});