我使用Angular.js
和Bootstrap
來構建我的應用程序。一個指令將輸入標籤插入到DOM中。我想在輸入標籤上使用slider
來修改它。我跟着tutorial。引導滑塊不起作用
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>
標籤。
我的代碼有什麼問題?什麼沒有考慮到?一些錯誤或依賴關係?
你需要編寫此 – 2013-04-30 13:34:25
一個指令,你的意思是jQueryUI的滑塊向右 – 2013-04-30 13:35:28