2 TypeScript--Hello World

Posted 姜腾腾

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2 TypeScript--Hello World相关的知识,希望对你有一定的参考价值。

  安装好TypeScript后,我们来完成第一个页面--Hello World

  新建index.html文件:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>TypeScrip Hello Worldt</title>
</head> 
<body> 
    <script src="hello.js"></script>
</body> 
</html>

  创建 hello.ts 文件, *.ts 是 TypeScript 文件的后缀,向 hello.ts 文件添加如下代码:

alert(\'Hello World in TypeScript !\');

  保存代码,打开终端,进入项目目录下,执行命令:$ tsc hello.ts

  在相同目录下就会生成一个 hello.js 文件,然后打开 index.html 输出结果如下:

 

以上是关于2 TypeScript--Hello World的主要内容,如果未能解决你的问题,请参考以下文章

swift Swift 2.1 Hello World测试

Qt 学习之路 2:Hello, world!

Scratch 教程2 Imagine a World

为什么在Python 2.7中自动打印括号?

MyBatis(3.2.3) - hello world

为啥“Hello world”会打印 2 次?