正文標記內的簡單腳本標記似乎不起作用。警報沒有在下面的代碼中觸發:Meteor.js:<script>標記不起作用<body>
<body>
<script type="text/javascript">
alert('Hello');
</script>
{{>main}}
</body>
任何想法爲什麼?
編輯: 以全新的流星應用程序試了一下,沒有警告標籤還是:
<head>
<title>test</title>
</head>
<body>
<script type="text/javascript">
alert('Hello');
</script>
{{> hello}}
</body>
<template name="hello">
<h1>Hello World!</h1>
{{greeting}}
<input type="button" value="Click" />
</template>
奇怪的是,當我複製粘貼HTML源,取得了新的HTML頁面,警報將工作。
編輯3:我在這裏部署這個應用程序:http://alert-in-body-test.meteor.com/ 你有一個警告框?
我
工作 「另外,還要確保
裏面標籤」。 這不是流星模板的工作方式,實際上在普通html中實際上是可選的。 – Noishe