我试图让jscolor(http://jscolor.com/)在我的流星应用程序上工作。

jscolor.js javascript文件位于:

client/lib/jscolor.js


现在,当我在main.html中将带有jscolor类的input元素放入时:

<head>
  <title>Meteor Site</title>
</head>

<body>
   <input class="jscolor" value="ab2567">
</body>


有用!但是,一旦我将其放入由铁路由器控制的模板中,就可以进行以下设置:

<template name="settings">
    Settings
     <input class="jscolor" value="ab2567">
</template>


它不执行任何操作,并且保留常规输入字段。我是否需要以某种方式将javascript文件传递到模板,还是需要使其全局化?希望有人可以帮助我吗?

最佳答案

        meteor add risul:bootstrap-colorpicker
html file
        <template name="hello">
          <input type="text" class="demo1" value="#5367ce" />
        </template>
js file
       Template.hello.rendered = function() {
         $('.demo1').colorpicker();
       }

关于javascript - meteor 拾色器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37442348/

10-11 23:53