What is JavaScript?
JavaScript is a script running on the broswer.
For example:
<html>
<body>
<script language=”JavaScript”>
document.write(”<h2>Table of Fracorials</h2>”);
for(i=1,fact=1;i<10;fact*=i)
{
document.write(i+”!=”+fact);
document.write(”<br>”);
}
</script>
</body>
</html>
发表评论
| Trackback
