replace问题
老师有些问题还是没搞清楚,replace的设定不是替换指令里面的内容,而是是否替换指令本身
老师有些问题还是没搞清楚,replace的设定不是替换指令里面的内容,而是是否替换指令本身
2017-01-18
<!DOCTYPE html> <html lang="en" ng-app = "app"> <head> <meta charset="UTF-8"> <title>replace</title> </head> <body> <hello> <p>replace用法</p> </hello> <script src = "js/angular.js"></script> <script> //创建模块 var app = angular.module('app',[]); //自定义指令 app.directive('hello',function(){ return { restrict:'EA', replace:true, template:'<div><h3>检测replace</h3></div>' } }) </script> </body> </html>
运行结果:
根据测试结果得出:其应该是替换指令本身
举报