我正在尝试了解模板的基础知识并遇到以下问题。当我尝试将ID
或/和type
属性附加到<script>
我的 HTML 代码中的标记时,它不起作用:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="somescript.js"></script>
</head>
<body>
<script type="text/html" id="template1">
<form name="formXY">
<p>
<label>Field1
<input type="text" name="form_field1" value= "{{field1}}">
</label>
<button type="button">Submit</button>
</p>
</form>
</script>
</body>
</html>
我在 chrome/firefox/IE9/Opera 中运行了它,但它们都没有解析标签之间的<script>
代码。浏览器认为它只是一个文本字段。当我删除ID
和type
属性时,它再次被正确解析。
我可能错过了一些非常基本的东西......