实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<html ng-app="ionicApp">
2
  <head>
3
    <meta charset="utf-8">
4
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
5
    
6
    <title>手册网基础教程(shouce.ren)</title>
7
    <link href="/static/example/ionic.min.css" rel="stylesheet">
8
    <script src="/static/example/ionic.bundle.min.js"></script>
9
    <script type="text/javascript">
10
    angular.module('ionicApp', ['ionic'])
11
12
    .controller('MainCtrl', function($scope) {
13
14
      $scope.settingsList = [
15
        { text: "Wireless", checked: true },
16
        { text: "GPS", checked: false },
17
        { text: "Bluetooth", checked: false }
18
      ];
19
20
      $scope.pushNotificationChange = function() {
21
        console.log('Push Notification Change', $scope.pushNotification.checked);
22
      };