vue語法 `${ }` (模版字符串)

const name = '小緣'
const age = 14
console.info(`大家好,我叫${name},今年${age}歲了`)
// 等價於
console.info('大家好,我叫' + name + ',今年' + age + '歲了')
 
// 最大的優勢是支持換行字符串
const url = '//baidu.com'
const text = '百度一下,你就知道'
const html = `
  <div class="container">
    <a href="${url}">${text}</a>
  </div>
`
console.log(html)
console.log(typeof html)

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章