W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<html> <body> <script type="text/javascript"> Number.prototype.toHexString = function() { return this.toString(16); }; var iNum = 15; document.write(iNum.toHexString()); </script> </body> </html>