出於某種原因,基本預輸入示例不上我的任何Web服務器的工作,但我能得到它的工作在這裏 - http://jsfiddle.net/H4Qmh/12/基本引導預輸入與例如
代碼中的任何分歧或問題比較之下代碼發佈在jsfiddle上?你能確認下面的代碼適合你嗎? (你應該能夠只需鍵入小時,看到的結果,我或多個)
<html>
<head>
<link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery.js" type="text/javascript"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.js" type="text/javascript"></script>
</head>
<body>
<div class="well">
<input autocomplete="off" type="text" class="span3" data-provide="typeahead" data-items="4" placeholder="Type in letter h, i or s" data-source='["iPhone", "HTC", "Samsung"]' >
</div>
</body>
</html>
您必須提供在服務器 –