我使用Angular.js
andBootstrap
来构建我的应用程序。指令将输入标签插入 DOM。我想slider
在输入标签上使用来修改它。我按照教程。
tag = '<input type="text" class="slider" ng-model="costPerDay"/>';
// pass it to a template and push to DOM
$('.slider').slider({
max: 500,
orientation: 'horizontal',
selection: 'after'
});
该slider
函数存在于jQuery对象上,但调用它没有任何作用,没有任何异常!我的输入仍然只是一个<input>
标签。
我的代码有什么问题?什么不考虑?一些错误或依赖关系?