跳到主要內容

【Javascript系列】 - 樣板字串 String Template

 樣板文字用反引號表示: ``, 如下:

const html = '<div>' 
    + template.link
    + '</div>';

等同於

const html = `<div>
                ${template.link}
              </div>`

留言

這個網誌中的熱門文章

java西元民國轉換_各種不同格式

C#資料庫操作(新增、修改、刪除、查詢)