请问大神下面的代码到底错哪了?

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-type" content="text/html; charset=utf-8 ">

<title>让用户输入两个数字,然后输出相加的结果</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);

   document.write("你输入的第一个数字是"+intA);

   document.write("<br>你输入的第二个数字是"+intB);

   document.write("<br>两者和是"+(parseInt(intA)+parseInt(intB)));

</script>

</div>

</body>

</html>


Axtjl25
浏览 1333回答 3
3回答

西兰花伟大炮

把background-color后面的分号改为冒号就行了,代码就可以运行了,最好定义变量时加上var,如果要采纳答案,麻烦明天采纳,感谢

田心枫

<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8 "> <title>让用户输入两个数字,然后输出相加的结果</title> </head> <body> <script>    intA = prompt("请输入第一个数字","");    intB = prompt("请输入第二个数字",27);    console.log(intA);    document.write("你输入的第一个数字是"+intA);    document.write("<br>你输入的第二个数字是"+intB);    document.write("<br>两者和是"+(parseInt(intA)+parseInt(intB))); </script> </div> </body> </html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript