隨手寫了個JS 版的sprintf(), 只處理%s, 沒處理%% 和其它用法。 function sprintf(t_str) { var t_ar = t_str.split('%s'); var r_str = ''; var i; ...
確定! 回上一頁