レンダリング: 実装コード: コードをコピー コードは次のとおりです: ; 無題ドキュメント 'tbl1' cellpadding="1" cellpacing="1" bgcolor="#333333" width="800px" style="line-height:30px;"> タイトル時間 データをロードしています。 。 。 <br>$(function(){ <br>var html=""; <br>var bgcolor=""; <br>$.ajax({ <br>url:"http://www.cnblogs.com /rss", <br>type:"get", <br>//dataType:($.browser.msie) ? "text" : "xml", <br>success:function(data){ <br>$ ("item",data).each(function(index,element){ <br>bgcolor=index%2==0 ?" bgcolor='#F1F1F1' ":" bgcolor='#FFFFFF' "; <br> html ="<tr " bgcolor "><td><a href='" $(this).find("link").text() "'>" ("タイトル").text(),40) "</td><td>" new Date($(this).find("pubDate").text()).format("yyyy-MM- dd hh:mm:ss"); "</td></tr>"; <br>}); <br>$("#tbl1 tr:not(':first')").remove( );//最初以外の行を削除 <br>$("#tbl1").append(html);//データをテーブルにバインド <br>}, <br>complete:function(){ <br> $( "#loading").hide(); <br>}, <br>beforeSend:function(x){ <br>//x.setRequestHeader("Content-Type", "charset=utf-8") ; 🎜>$("#loading").show(); <br>}, <br>error:function(){ <br>alert("error") <br>}); >}); <br> <br>/**<br>* 時間オブジェクトのフォーマット <br>*/ <br>Date.prototype.format = function(format ) { <br>/* <br>* 例:format="YYYY-MM-dd hh:mm:ss"; <br>*/ <br>var o = { <br>"M " :this.getMonth () 1, // 月 <br>"d " :this.getDate(), // 日 <br>"h " :this.getHours(), // 時間 <br>"m " :this.getMinutes( ), // 分 <br>"s " :this.getSeconds(), // 秒 <br>"q " :Math.floor((this.getMonth() 3) / 3), // 四半期 <br> "S " :this.getMilliseconds() <br>// ミリ秒 <br>} <br>if (/(y )/.test(format)) { <br>format = format.replace(RegExp.$1, ( this. getFull Year() "") <br>.substr(4 - RegExp.$1.length)); <br>} <br>for ( var k in o) { <br>if (new RegExp("(" k " )").test(format)) { <br>format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] <br>: ("00" o[k] ). substr(("" o[k]).length)); <br>} <br>} <br>return format; <br>} <br>//フォーマットヘッダー情報<br>function FormatContent( word,length ){ <br>return word.length>length?word.substring(0,length) "...":word; <br>