Ionic 2和Angular 2中的外部Jquery依赖项不起作用

时间:2017-01-28 06:32:45

标签: jquery angular ionic-framework cron ionic2

从这里使用这种技术(https://weblog.west-wind.com/posts/2016/Sep/12/External-JavaScript-dependencies-in-Typescript-and-Angular-2),我尝试在我的离子2 /角度2移动应用程序中使用jquery cron(http://shawnchin.github.io/jquery-cron/)和jquery。

import $ from 'jquery';

window["$"] = $;
window["jQuery"] = $;

export class CronPage implements OnInit {

  ngOnInit() {
      (<any> $("#selector")).cron();
  }
}

并在main.js

之后的index.html中添加了插件
<script src="build/main.js"></script>
<script src="assets/jquery-cron/cron/jquery-cron.js"></script>

结果:

它没有显示任何错误,但它没有用! cron选择控件根本没有出现。

还有什么问题?

0 个答案:

没有答案