html中定義模板

定義一個html中不解析的模板,有以下三種方法
一、使用<xmp>標籤javascript

<xmp id="test">
  <div>測試</div>
</xmp>

二、使用<template>標籤html

<template id="test">
  <div>測試</div>
</template>

三、使用javascriptjava

<script id="test" type="text/template">
    <div>測試</div>
</script>

 總結:<xmp>這個標籤已經廢棄,新版本中建議使用<pre><code>可是實際上後兩個沒有<xmp>效果好。javascript兼容性好一些。測試

相關文章
相關標籤/搜索