1

jquery (www.datatables.net) の DataTables プラグインを使用しています。セルを次のように変換する方法

name www
n1   w1
n2   w2
n3   w3
name www

になった

name www
n1   <a href="w1">w1</a>
n2   <a href="w2">w2</a>
n3   <a href="w3">w3</a>
name www

jquery にコードをインストールする方法は次のとおりです。

$(document).ready(function() {
   $('#example').dataTable();
   $('#example').convertCell(setCell("<a href="getCell()">getCell()</a>"));//How to put it better?
});

そしてhtmlコードは

<div id="dynamic">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example">
    <thead>
        <tr>
            <th width="15%">Name</th>
            <th width="15%">Www</th>
        </tr>
    </thead>
    <tbody></tbody>
</table>
</div>

よろしく: データテーブルの初心者

4

1 に答える 1

0

プラグインについてはわかりませんが、次を使用できます。

$('.example').each(function(){
    $(this).wrap(function() {
        return '<a href="' + $(this).text() + '" />';
    });
});

.exampleそれぞれのテキストを指すリンク内のクラスで各要素をラップします。

于 2012-12-29T12:20:12.153 に答える