HTML 5 placeHolder

<html>
<body>
<input type="text" id="idNum" placeholder="placeholder" value="">
<script type="text/javascript">
var o = document.getElementById("idNum");
with(o){
alert(value);
alert(placeholder);
}
</script>
</body>
</html>

PlaceHolder IE9不支持,IE11支持。

上一篇:同步 Visual Studio Code 的设置与插件


下一篇:JVM进程占用CPU过高问题排查