为什么这个angularjs例子对plunker不起作用?

前端之家收集整理的这篇文章主要介绍了为什么这个angularjs例子对plunker不起作用?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在这个有角度的文件http://docs.angularjs.org/guide/concepts中,有一个关于指令的例子.

Directives

A directive is a behavior or DOM transformation which is triggered by the presence of a custom attribute,element name,or a class name. A directive allows you to extend the HTML vocabulary in a declarative fashion. Following is an example which enables data-binding for the contenteditable in HTML.

它提供了两个现场演示,一个用于plunker,另一个用于jsfiddle.

> plunker:http://plnkr.co/edit/nsAUafYFA1tHPo52TWUm?p=preview
> jsfiddle:http://jsfiddle.net/rnL84/

为什么jsfiddle运行良好,但是一个不起作用?它们具有完全相同的代码,并且控制台中没有错误.

plunker在index.html中使用ng-app而不是ng-app =’directive’.

需要在ng-app中指定script.js javascript文件中定义的模块(在此示例中为named指令),以便它获取contenteditable指令:

angular.module(‘directive’,[])…

有关工作版本,请参阅this plunker.

原文链接:https://www.f2er.com/angularjs/240358.html

猜你在找的Angularjs相关文章