我在表单页面上使用了物化,但是我遇到了问题。我不了解双箭头如何出现在选择项上(请参阅我发送的照片)。怎么能留下一个箭头?
我使用以下代码:
<select name="filter" id="filter" onchange="parent.document.location.href=document.form.filter[document.form.filter.selectedIndex].value" required "/>
<option value="" required "/>Одаберите начин плаћања</option>
<option value="registracija1">1</option>
<option value="registracija2">2</option>
</select>
答案 0 :(得分:0)
您编写select
元素的语法看起来不正确,因为在"/
之后不需要required
。
此外,您还必须在css
中包含实现和js
的{{1}}代码的所有必要资源(javascript
,select
库)。否则它将无法正常工作。这是一个工作代码:
html
$(document).ready(function() {
$('select').material_select();
});