我正嘗試在我的Polymer項目中使用Materialize.css autocomplete。Materialize.css自動完成功能不能與聚合物一起使用
控制檯登錄:
Uncaught TypeError: $(...).autocomplete is not a function
我的代碼:
<div class="input-field">
<input type="text" id="assemp" class="autocomplete" value="{{emps::input}}">
<label for="assemp">Assigned Employee(s)</label>
</div>
腳本:
attached : function() {
$('input.autocomplete').autocomplete({
data: {
"Apple": null,
"Microsoft": null,
"Google": 'http://placehold.it/250x250'
}
});
}
你在HTML中加載物化JavaScript腳本嗎?請參閱http://materializecss.com/getting-started.html –
我遇到了同樣的問題 –
您應該閱讀[TypeError:「x」不是函數](https://developer.mozilla.org/en -US/docs/Web/JavaScript/Reference/Errors/Not_a_function) – Liam