我正在尝试使用Materialise Framework,似乎我无法运行自动完成示例。这里缺少一些东西。
我在Materialize之前导入了jQuery,我甚至尝试在<中移动jQuery。头>。如果你有建议。我知道它是愚蠢但我只是看不到它,它已经超过40分钟基本的东西。
<!DOCTYPE html>
<html>
<head>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<div class="row">
<div class="col s12">
<div class="row">
<div class="input-field col s12">
<i class="material-icons prefix">textsms</i>
<input type="text" id="autocomplete-input" class="autocomplete">
<label for="autocomplete-input">Autocomplete</label>
<script>$('input.autocomplete').autocomplete({
data: {
"Apple": null,
"Microsoft": null,
"Google": 'http://placehold.it/250x250'
}
});
</script>
</div>
</div>
</div>
</div>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.js"></script>
</body>
</html>
谢谢!
答案 0 :(得分:5)
我认为你的问题不是物化,而是
$('input.autocomplete').autocomplete({})
本身。您在实际导入之前尝试使用$。
您应该移动自己的代码来执行jQuery并实现import语句,这样您就可以在自己的代码中使用$并使jQuery可用。
(其他答案说将脚本移动到头标签。据我所知,这是一个不好的做法,你应该在身体标签的末尾有你所有的js)
答案 1 :(得分:0)
将库导入script
元素时移动head
个标记,或者将script
标记放在上述两个之后调用autocomplete
的位置。