我想創建一個文本模板並在其中設置佔位符並填充此佔位符並在我的頁面中使用它? 如..如何在jQuery中使用佔位符?
var temp = '<div class="persons">';
temp += '<p> <span class="firstname">First Name :</span> <span> [firstname]</span> </p>';
temp += '<p> <span class="lastname">Last Name :</span> <span> [lastname]</span> </p>';
temp += '<p> <span class="tel">Telephone :</span> <span> [tel]</span> </p>';
temp += '</div>';
,改變[firstname]
,[lastname]
,[tel]
與我的頁面值並且顯示? 或任何其他想法?
你有什麼嘗試?另外,你應該看看現有的JS模板引擎。 – 2012-04-25 20:48:32
請詳細解釋。 – AmirHossein 2012-04-25 20:49:59
使用sprintf /格式類型的函數:看到這裏http://stackoverflow.com/questions/610406/javascript-equivalent-to-printf-string-format/4673436#4673436 – 2012-04-25 20:54:08