作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<div data-role="collapsible" data-content-theme="e" id="collapsePlace">
<h3>Place:</h3>
<!--things...-->
</div>
如何动态更改 <h3>
的文本可折叠 div 中的标题(“地点:”)?
我尝试过:
$('#collapsePlace').children('h3').text('new text');
它改变了文本 - 但丢失了所有样式!
最佳答案
在 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");
祝你编码愉快!
关于Jquery移动: Dynamically change the text of the header of a collapsible div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7857218/
我是一名优秀的程序员,十分优秀!