作为.Net下的一名程序员,我是离开VS就感觉没办法活。所以我们首先设置下VS2012,以免写出来HTML5代码说不支持此标签。
双击"选项",打开如下图,然后选中这些:
然后写下如下代码发现没有波浪线等提示了。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
window.onload = function () {
try {
document.createElement("canvas").getContext("2d");
document.getElementById("support").innerHTML = "HTML5 Canvas is supported in you browser";
} catch (e) {
document.getElementById("support").innerHTML = "你的浏览器不支持HTML5";
}
}
</script>
</head>
<body>
<div id="support">
</div>
<canvas id="diagonal" style="border: 1px solid red;" width="200px" height="200px">
</canvas>
</body>
</html>
由于我装的是IE8,IE8不支持HTML5所以我就设置启动使用FF浏览。如下设置:
OK!