<div data-role="collapsible" data-content-theme="e" id="collapsePlace">
<h3>Place:</h3>
<!--things...-->
</div>
如何在可折叠div中动态更改<h3>
标题('Place:')的文字?
我试过了:
$('#collapsePlace').children('h3').text('new text');
它会改变文字 - 但会丢失所有样式!
答案 0 :(得分:5)
jQuery Mobile 1.0RC2中可折叠的实际HTML结构如下(在框架传递HTML之后):
<div id="collapsePlace" data-content-theme="e" data-role="collapsible" class="ui-collapsible ui-collapsible-collapsed">
<h3 class="ui-collapsible-heading ui-collapsible-heading-collapsed">
<a class="ui-collapsible-heading-toggle ui-btn ui-btn-icon-left ui-corner-top ui-corner-bottom ui-btn-up-c" href="#" data-theme="c">
<span aria-hidden="true" class="ui-btn-inner ui-corner-top ui-corner-bottom">
<span class="ui-btn-text">Place:
<span class="ui-collapsible-heading-status"> click to expand contents</span>
</span>
<span class="ui-icon ui-icon-plus ui-icon-shadow"></span>
</span>
</a>
</h3>
<div class="ui-collapsible-content ui-body-e ui-collapsible-content-collapsed" aria-hidden="true">
<!--things...-->
</div>
</div>
<span>
元素中的嵌套<span class="ui-btn-text">
元素使这有点棘手。如果要保留<span class="ui-btn-text">
元素的结构,则需要保存嵌套的<span>
元素,覆盖它,然后替换它:
//run code on document.ready
$(function () {
var num = 1;
//add click handler to link to increment the collapsible's header each click
$('a').bind('click', function () {
//cache the `<span class="ui-btn-text">` element and its child
var $btn_text = $('#collapsePlace').find('.ui-btn-text'),
$btn_child = $btn_text.find('.ui-collapsible-heading-status');
//overwrite the header text, then append its child to restore the previous structure
$btn_text.text('New String (' + num++ + ')').append($btn_child);
});
});
以上是上述解决方案的一个方面:http://jsfiddle.net/jasper/4DAfn/2/
答案 1 :(得分:5)
在1.3.2中,以下似乎有效:
<div id="MyID" data-role="collapsible" >
<h3><span id="MyHeaderID">My Header</span></h3>
<!-- My Content -->
</div>
JQuery:
$("#MyID h3 #MyHeaderID").text("Your New Header");
快乐的编码!
答案 2 :(得分:2)
答案 3 :(得分:0)
一个简单的选择是给h3一个自定义id / class,例如:
<div data-role="collapsible" data-content-theme="e" id="collapsePlace">
<h3 id='h3Text'>Place:</h3>
<!--things...-->
</div>
这样你只需要这样做:
$('#collapsePlace #h3Text').text('new text');