首页 > 其他 > 详细

第一个javescript 程序

时间:2014-09-11 18:43:52      阅读:192      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
<!DOCTYPE html>
<html>
<body>
<script language="javascript" type="text/javascript">
<!--
function greeter(person) {
    return "Hello, " + person;
}
var user = "Jane User";
document.body.innerHTML = greeter(user);
confirm("ready to play");
var age=prompt("what‘s your age");
 if(age>=13)
 {
     console.log("play");
 }
 else
 {
     console.log(‘sorry‘);
 }
 
 console.log("You are at a Justin Bieber concert, and you hear this lyric ‘Lace my shoes off, start racing.‘" );
 console.log("Suddenly, Bieber stops and says, ‘Who wants to race me?‘");
 
 var userAnswer=prompt("Do you want to race Bieber on stage?");
 
 
 if(userAnswer=‘yes‘)
 {
     console.log("You and Bieber start racing. It‘s neck and neck! You win by a shoelace!");
 }
else
{
     console.log("Oh no! Bieber shakes his head and sings ‘I set a pace, so I can race without pacing.‘");
 }
 
 var feedback= prompt("Message");
 if(feedback>8)
 {
     console.log("Thank you! We should race at the next concert!");
     
 }
 else
 {
     console.log("I‘ll keep practicing coding and racing.")
 }
//-->
</script>
</body>
</html> 
View Code

 

第一个javescript 程序

原文:http://www.cnblogs.com/roychenfly/p/3966798.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!