首页 > 代码库 > angular2 学习笔记 ( 第3方插件 jQuery and ckeditor )
angular2 学习笔记 ( 第3方插件 jQuery and ckeditor )
refer :
https://forums.meteor.com/t/importing-ckeditor-using-npm/28919/2 (ckeditor)
https://github.com/angular/angular-cli/issues/3094 (jQuery)
Ckeditor
1. npm install ckeditor --save
2. npm install @types/ckeditor --save --dev
3. index.html 写上
<script>
CKEDITOR_BASEPATH = ‘/app/ckeditor/‘;
</script>
4. 创建一个 /app/ckeditor 文档
从 node_modules/ckeditor 里面把几个文件 copy 去 /app/ckeditor 里 (lang, plugins, skins, config.js, contents.css, styles.js )
5. import "ckeditor";
6.
ngAfterViewInit() { setTimeout(() => { CKEDITOR.replace( ‘editor1‘ ); }); }
jQuery
1. npm install jquery --save
2. npm install @type/jquery --save --dev
3. import $ from ‘jquery/dist/jquery‘;
4. declare var $:JQueryStatic;
5.
ngAfterViewInit() { setTimeout(() => { $("div").show(); }); }
angular2 学习笔记 ( 第3方插件 jQuery and ckeditor )
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。