⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 js_obj_math.asp@output=print

📁 W3Schools tutorial..web designing
💻 ASP@OUTPUT=PRINT
字号:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-US" xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JavaScript Math Object</title>
 
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="Keywords" content="xml,tutorial,html,dhtml,css,xsl,xhtml,javascript,asp,ado,vbscript,dom,sql,colors,soap,php,authoring,programming,training,learning,beginner's guide,primer,lessons,school,howto,reference,examples,samples,source code,tags,demos,tips,links,FAQ,tag list,forms,frames,color table,w3c,cascading style sheets,active server pages,dynamic html,internet,database,development,Web building,Webmaster,html guide" />

<meta name="Description" content="Free HTML XHTML CSS JavaScript DHTML XML DOM XSL XSLT RSS AJAX ASP ADO PHP SQL tutorials, references, examples for web building." />

<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache" />

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "../../https@ssl./default.htm" : "../../www./default.htm");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
var pageTracker = _gat._getTracker("UA-3855518-1");
pageTracker._initData();
pageTracker._trackPageview();
</script>

</head>
<body>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

<h1>JavaScript Math Object</h1>
<a href="js_obj_boolean.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="js_obj_regexp.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>
<hr />
<p class="intro">The Math object allows you to perform common mathematical 
tasks.</p>
<hr />

<h2>Examples</h2>

<p><a target="_blank" href="../jsref/tryit.asp@filename=tryjsref_round">round()</a><br />
How to use round().</p>

<p><a target="_blank" href="../jsref/tryit.asp@filename=tryjsref_random">random()</a><br />
How to use random() to return a random number between 0 and 1.</p>

<p><a target="_blank" href="../jsref/tryit.asp@filename=tryjsref_max">max()</a><br />
How to use max() to return the number with the highest value of two specified numbers.</p>

<p><a target="_blank" href="../jsref/tryit.asp@filename=tryjsref_min">min()</a><br />
How to use min() to return the number with the lowest value of two specified numbers.</p>
<hr />

<h2>Complete Math Object Reference</h2>
<p>For a complete reference of all the properties and methods that can be used with 
the Math object, go to our <a href="../jsref/jsref_obj_math.asp">
complete Math object reference</a>.</p>
<p>The reference contains a brief description and examples of use for each 
property and method!</p>

<hr />

<h2>Math Object</h2>

<p>The Math object allows you to perform common mathematical tasks.</p>
<p>The Math object includes several mathematical values and functions. You
do not need to define the Math object before using it.</p>

<hr />

<h2>Mathematical Values</h2>
<p>JavaScript provides eight mathematical values (constants) that can be 
accessed from the Math object. These are: E, PI, square root of 2, square root 
of 1/2, natural log of 2, natural log of 10, base-2 log of E, and base-10 log of 
E.</p>
<p>You may reference these values from your JavaScript like this:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table11">
    <tr>
      <td>
        <pre>Math.E
Math.PI
Math.SQRT2
Math.SQRT1_2
Math.LN2
Math.LN10
Math.LOG2E
Math.LOG10E</pre>
      </td>
    </tr>
</table>
<br />
<hr />

<h2>Mathematical Methods</h2>
<p>In addition to the mathematical values that can be accessed from the Math object 
there are also several functions (methods) available.</p>
<p><b>Examples of functions (methods):</b></p>
<p>The following example uses the round() method of the Math object to 
round a number to the nearest integer:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table1">
    <tr>
      <td>
        <pre>document.write(Math.round(4.7));</pre>
      </td>
    </tr>
</table>
<p>The code above will result in the following output:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table2">
    <tr>
      <td>
        <pre>5</pre>
      </td>
    </tr>
</table>
<p>The following example uses the random() method of the Math object to 
return a random number between 0 and 1:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table5">
    <tr>
      <td>
        <pre>document.write(Math.random());</pre>
      </td>
    </tr>
</table>
<p>The code above can result in the following output:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table6">
    <tr>
      <td>
        <pre><script type="text/javascript">
	document.write(Math.random())
	</script></pre>
      </td>
    </tr>
</table>
<p>The following example uses the floor() and random() methods of the Math object to 
return a random number between 0 and 10:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table9">
    <tr>
      <td>
        <pre>document.write(Math.floor(Math.random()*11));</pre>
      </td>
    </tr>
</table>
<p>The code above can result in the following output:</p>

<table class="ex" cellspacing="0" border="1" width="100%" id="table10">
    <tr>
      <td>
        <pre><script type="text/javascript">
	document.write(Math.floor(Math.random()*11))
	</script></pre>
      </td>
    </tr>
</table>

<br />
<hr />

<a href="js_obj_boolean.asp"><img alt="previous" border="0" src="../images/btn_previous.gif" width="100" height="20" /></a>
<a href="js_obj_regexp.asp"><img alt="next" border="0" src="../images/btn_next.gif" width="100" height="20" /></a>

<p>From <b>http://www.w3schools.com</b> (Copyright Refsnes Data)</p>

</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -