<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支持。