Home > Web Front-end > JS Tutorial > body text

Javascript hexadecimal conversion example analysis_javascript skills

WBOY
Release: 2016-05-16 15:58:51
Original
1145 people have browsed it

The example in this article describes the method of Javascript hexadecimal conversion. Share it with everyone for your reference. The details are as follows:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>进制转换</title>
<script type="text/javascript">
  var x = 6;
  var num = x.toString(2);
  //把整数转换为2进制,注意toString方法中的2表示“二进制”
  //alert("num=" + num);
  var z = "110";
  var num2 = parseInt(z, 2);
  //注意parseInt方法的第二个参数,表示z是一个二进制数,
  //所以转换为整数变为6
  alert("num2=" + num2);
</script>
</head>
<body>
</body>
</html>
Copy after login

I hope this article will be helpful to everyone’s JavaScript programming design.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template