大家好,我正在尝试为我的博客文章创建一个“zen view”模式,所以我只想获取#single div 的内容(只有文章内容,没有标题或侧边栏等......)并将其放入另一个名为 #zen-view 的 div,请注意我使用的是WordPress。
所以我现在尝试制作这段代码:
<button class="zen">Read in Zen mode</button> // when clicked display #zen-view div
<div id="zen-view"> // initialy the css of that div is set to display:none
<p id="zen-content"></p> // the tag where the contet of the #single div will be load
<button class="close" href="#">Close Zen mode</button> // when clicked close zen-view div
</div>
这是jquery
$(function() {
$('.zen').click( function() {
$('#zen-view').show();
... how can i grab the content of #single div and put into #zen-content div? ...
});
$('.close').click( function() {
$('#zen-view').hide();
});
});
谢谢