JavaScript-3.1--获取用户的输入,输出用户输入的两数之和---ShinePans
提示用户输入两个数,然后输出用户输入的两数之和
第一次输入 ,输入处为空
第二个输入,输入处为默认27 (这里强调语句的使用)
<html> <head> <meta http-equiv="content-type" content="text/html;charset=GB2312"/> <title> 3.1 让用户输入两个数字,然后输出相加的结果 </title> </head> <body style="overflow:auto;padding:0px;margin:0px;"> <div style="font-size:14px;font-weight:bold;color:white;font-family:Arial,宋体;background-color:#6090DA;padding:4px 10px;"> <script> intA=prompt("请输入第一个数字",""); //这里初始没有显示 intB=prompt("请输入第二个数字",27); //这里初始会显示27 document.write("你输入的第一个数字是"+intA); document.write("你输入的第二个数字是"+intB); document.write("<br>两者和是"+(parseInt(intA)+parseInt(intB) )); </script> </div> </body> </html>
打开效果:
JavaScript-3.1--获取用户的输入,输出用户输入的两数之和---ShinePans,古老的榕树,5-wow.com
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。