Skip to content

Instantly share code, notes, and snippets.

@mingder78
Created July 5, 2014 03:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mingder78/503a5de8822cd6afe1f4 to your computer and use it in GitHub Desktop.
Save mingder78/503a5de8822cd6afe1f4 to your computer and use it in GitHub Desktop.
A Pen by Ming-der Wang.
<html ng-app>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.1.5/angular.min.js"></script>
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<meta charset=utf-8 />
<title>Angular JS Demo</title>
</head>
<body>
<div>
請輸入你的名字:
<input type="text" ng-model="sometext" />
<h1>哈囉 {{ sometext }}</h1>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment