码迷,mamicode.com
首页 > 其他好文 > 详细

第一个javescript 程序

时间:2014-09-11 18:43:52      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   java   ar   art   

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 程序

标签:style   blog   http   color   io   os   java   ar   art   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!