- <meta charset="UTF-8">
- <TITLE>比大小</TITLE>
- </head>
- <body>
- <script type="text/javascript">
- var yh=0;
- var head=0;
- yh=praseInt(prompt("yh is:"));
- head=praseInt(prompt("head is :"));
- document.write(yh);
- document.write(head);
- if (yh>head) {
- alert("yh>head")
- };
- else if (yh<head) {
- alert(yh<head)
- };
- else {
- alert(alertyh=head)
- }
- </script>
- </body>
- </html>
複製代碼 |