先看三个OK的html程序:
<html>
<body>
<input type="text" />
</body>
</html>
<html>
<body>
<input type='text' />
</body>
</html>
<html>
<body>
<input type=text />
</body>
</html>
我只能说, html, 你好任性。
再看同样任性的js, 如下程序OK:
<html>
<body>
<script>
alert(1)
alert(2)
</script>
</body>
</html>
我的思维要变了, 不能老是搞C语言那么严谨的东东。