码迷,mamicode.com
首页 > Web开发 > 详细

angurlarJS

时间:2015-01-18 17:05:33      阅读:462      评论:0      收藏:0      [点我收藏+]

标签:

<!doctype html>
<html>
<head>
<script src="jquery-1.7.2.min.js" type="text/javascript"></script>
<script  src="angular-1.0.1.min.js" type="text/javascript"></script>

</head>
<body>
<div ng-app="app" ng-controller="parentCtr" id="testdiv">
    
 
</div>

</body>
<script>





angular.module("app", []).controller("parentCtr",
function ($scope,$compile) {
    var html = ‘<div>name :<input ng-model="name" type="text" ng-change="change()" /></div>‘;
    $("#testdiv").html(
    $compile(html)($scope)
    );
    $scope.change = function (){
        console.log("hellojava");
        
    };
});
</script>
</html

angurlarJS

标签:

原文地址:http://www.cnblogs.com/standy225/p/4231859.html

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