小编Joa*_*lie的帖子

如何使用javascript将表格转换为li和td到<p>?

你好,我有这样的表

<table>
  <tbody>
    <tr>
      <th>PROVINSI</th>
      <th>KABKOT</th>
      <th>KECAMATAN</th>
      <th>DESA</th>
    </tr>

    <tr>
      <td>KALIMANTAN TENGAH</td>
      <td>SERUYAN</td>
      <td>SERUYAN HILIR</td>
      <td>TANJUNG RANGAS</td>
    </tr>
  </tbody>
</table>
Run Code Online (Sandbox Code Playgroud)

我想将此表转换为无序列表

<ul>
      <li>PROVINSI<p>KALIMANTAN TENGAH</p></li>
      <li>KABKOT<p>SERUYAN</p></li>
      <li>KECAMATAN<p>SERUYAN HILIR</p></li>
      <li>DESA<p>TANJUNG RANGAS</p></li>

</ul>
Run Code Online (Sandbox Code Playgroud)

我怎么能用javascript做到这一点?

我试过这个

function(){
    var ul = $("<ul>");
    $("table tr").each(function(){
        var li = $("<li>")
        $("th, td", this).each(function(){
            var p = $("<p>").html(this.innerHTML);
            li.append(p);
        });
        ul.append(li);
    })    
    $("table").replaceWith(ul);   
}
Run Code Online (Sandbox Code Playgroud)

但我真的不明白如何循环这个表.抱歉

html javascript css jquery

7
推荐指数
1
解决办法
2010
查看次数

使用Python 2.7在Windows 7中安装Mapnik 2.2.0

我一直在尝试在我的计算机上安装mapnik数小时,但是当我导入mapnik时我总是得到的ImportError: DLL load failed: The specified procedure could not be found.

我使用的是Windows 7.目前安装的软件是Opengeo套件的Geoserver.

这是我的道路

%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\;C:\Program Files\WIDCOMM\Bluetooth Software\;C:\Program Files\Java\jre7\bin;C:\Program Files\Java\jdk1.7.0_45\bin;C:\Python27;C:\mapnik-v2.2.0\lib
Run Code Online (Sandbox Code Playgroud)

我的python路径:

C:\Python27;C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\Program Files\ArcGIS\bin;C:\\mapnik-v2.2.0\python\2.7\site-packages\;C:\mapnik-v2.2.0\bin\;
Run Code Online (Sandbox Code Playgroud)

python dll path mapnik python-2.7

5
推荐指数
1
解决办法
3920
查看次数

标签 统计

css ×1

dll ×1

html ×1

javascript ×1

jquery ×1

mapnik ×1

path ×1

python ×1

python-2.7 ×1