こんにちは、私は自分のブログ記事の「禅ビュー」モードを作成しようとしているので、#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();
});
});
ありがとう