2011年4月28日 星期四

[jquery] $.temp 遞歸用法

$.temp 是一個很好用的 template plugin
不過通常做 template 會需要用到遞歸方式, 所以只好用下列函數來傳回html code.


function get_template (type , data ){
    $.template( "template", $('#tmp_'+type).html());   
    return $("<div />").append($.tmpl( "template",data)).html();
}


Plugin : http://api.jquery.com/jquery.tmpl

【下列文章您可能也有興趣】

沒有留言: