以下は私のHTMLコードです。2つの問題を解決するためにあなたの助けが必要です。
table
コードからを削除して、テーブルレスにする必要があります。- テンプレートとjQueryAJAXを使用してこのコードをレンダリングする最良の方法。ここでは、データはXMLファイルから取得されます。
実行中のコード:http://jsfiddle.net/samansari/ppu6T/
XMLデータ:
$(function() {
$.ajax({
type: "POST",
url: "/echo/xml/",
dataType: "xml",
data: {
xml: "<data caption='Start Processes'><heading caption='Customer Registration'><info caption='Credit note approval' desc='Credit Note request form and approval process.'/></heading><heading caption='Installation'><info caption='Credit note approval' desc='Credit Note request form and approval process..'/><info caption='Credit And Rebill Note (smartforms)' desc='Generate and Process a Letter of Guarantee for the customer.'/></heading></data>>"
},
success: function(xml) {
console.log(xml);
}
});
});
HTMLコード:
<div id="navcontainer">
<ul>
<li>
<div class="gtpointer"><span>    Start Processes</span> </div>
<ul>
<li>
<span> <span class="gtpointer">Customer Registration</span> </span>
<ul>
<li>
<span>
<table width="100%" border="0">
<tr>
<td width="30%">
<span class="landingSubmenu"><a href="#">Credit note approval</a></span>
</td>
<td>
<span >Credit Note request form and approval process.</span>
</td>
</tr>
</table>
</span>
</li>
</ul>
</li>
<li>
<span> <span class="gtpointer">Installation</span> </span>
<ul>
<li>
<span>
<table width="100%" border="0">
<tr>
<td width="30%">
<span class="landingSubmenu"><a href="#">Credit note approval</a></span>
</td>
<td>
<span >Credit Note request form and approval process.</span>
</td>
</tr>
</table>
</span>
</li>
<li>
<span>
<table width="100%" border="0">
<tr>
<td width="30%">
<span class="landingSubmenu"><a href="#">Credit And Rebill Note (smartforms)</a></span>
</td>
<td>
<span >Generate and Process a Letter of Guarantee for the customer.</span>
</td>
</tr>
</table>
</span>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
ありがとうございます。