答案 0 :(得分:0)
$(元素)'选择' .material_select();
这个陈述的结果应该是什么? .'select'
不是JS语法。
尝试:
$(element).material_select(); // if the element is already the select element
或:
$(element).find('select').material_select(); // find a child select of the element