gpt4 book ai didi

jquery-mobile - jQuery 移动 : Dynamically updating collapsible heading causes loss of styling

转载 作者:行者123 更新时间:2023-12-04 04:57:27 25 4
gpt4 key购买 nike

动态更新现有可折叠元素的标题标签文本后,样式消失,即使我在更新后调用 .collapsible({refresh: true}) 也是如此。

jsFiddle:http://jsfiddle.net/RAxn5/ (单击“打破它”链接以了解我的意思)。

HTML:

<div id="set" data-role="collapsible-set">
<div data-role="collapsible" id="set1" data-collapsed="false">
<h2 class="section_title">Section 1</h2>
<ul data-role="listview">
<li><a href="#"><h3>item 1</h3></a></li>
<li><a href="#"><h3>item 2</h3></a></li>
<li><a href="#"><h3>item 3</h3></a></li>
</ul>
</div>
</div>

<a href="#" id="break">Break it</a>

JS:
$('#break').click(function() {
$('#set1 h2.section_title').text('Now my style is gone!');
$('#set1').collapsible({refresh: true});
});

提前致谢。

最佳答案

添加到 span.ui-btn-text不至 h2 .

Demo


$('#set1 span.ui-btn-text').text('Now my style is gone!');

关于jquery-mobile - jQuery 移动 : Dynamically updating collapsible heading causes loss of styling,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16589979/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com