<body ng-init="num = 100">
you typed: {{num * 1.08}}.<p style="font-weight:{{(num >= 10000) * 700}}">※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
<!doctype html>
<html ng-app>
<head>
<title>AngularJS Sample</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
</head>
<body ng-init="num = 100">
<div>
<p>price:<input type="text" ng-model="num"></p>
<p style="font-weight:{{(num >= 10000) * 700}}">
you typed: {{num * 1.08}}.</p>
</div>
</body>
</html>
| << 前へ | 次へ >> |