如何在引导程序 4 折叠按钮中更改按钮文本
Posted
技术标签:
【中文标题】如何在引导程序 4 折叠按钮中更改按钮文本【英文标题】:How to change button text in bootstrap 4 collapse buttons 【发布时间】:2021-11-04 22:24:27 【问题描述】:当无序列表展开为“关闭”并且折叠为“更多”时,我正在尝试更改按钮的文本。问题是,当我单击按钮时,字符串“更多”在列表展开时仍然存在,然后开始按预期工作但相反。我知道我错过了一些东西。任何帮助将不胜感激
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
</head>
<body>
<ul class="category-menu" id="category1">
<li>First Ul li1 </li>
<li>First Ul li2 </li>
<li>First Ul li3 </li>
<li>First Ul li4</li>
</ul>
<button type="button" class="btn btn-link btn-block btn-filter-expand " data-toggle="collapse" data-target="category1" aria-expanded="true" aria-controls="category1">More
</button>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
</body>
$('button.btn-filter-expand').click(function ()
$(this).text(function (i, old)
return old == 'More' ? 'Close' : 'More';
);
);
我也试过下面的脚本
$('button.btn-filter-expand').html('More');
$('button.btn-filter-expand').on('click',function ()
$(this).html('');
if ($(this).prev('.category-menu').hasClass('show'))
$(this).html('Close');
else
$(this).html('More');
);
【问题讨论】:
【参考方案1】:你需要更改JQuery代码,试试下面的代码
$('button.btn-filter-expand').html('More');
$('button.btn-filter-expand').click(function ()
if($(this).html() == "More")
$(this).html('Close');
else
$(this).html('More');
);
【讨论】:
以上是关于如何在引导程序 4 折叠按钮中更改按钮文本的主要内容,如果未能解决你的问题,请参考以下文章
如何从引导程序 V3.2.0 升级到 V5.1.2 -(按钮折叠不起作用)