0

たとえば、次のドキュメントがあります。

This is the first line
<br> 
This is the second line 
<br>
This is the third line

次に、を削除して、<br>以下のようにテキストをフォーマットします。

    <DIV ID=PAGINATION-CONTENT>
        This is the first line
    </DIV>
    <DIV ID=PAGINATION-CONTENT>
        This is the second line 
    </DIV>
    <DIV ID=PAGINATION-CONTENT>
       This is the third line
    </DIV>

jqueryを使用してどのようにそれを可能にすることができますか?

4

2 に答える 2

1

このようなもの?classesIDは一意でなければならないので、私は使用しました!

<p>
  This is the first line
  <br>
  This is the second line
  <br>
  This is the third line
</p>

var lines = $('p').html().split('<br>')
var divs = '';
$.each(lines, function(i, line) {
    divs += '<div class="PAGINATION-CONTENT">'+line+'</div>';
})

$('p').html(divs)  

デモ

于 2012-08-07T04:10:59.357 に答える
0

page-break-beforeおよびpage-break-aftercss ルールを探している可能性があります。

実際の改ページについて話していると仮定します(つまり、印刷時)。そうでない場合、あなたの質問は非常に不明確です。

于 2012-08-07T04:05:24.323 に答える