我正在尝试使用 At.js 制作哈希标记功能。 现在使用静态数据,成功下载。 我需要突出显示具有不同颜色和字体粗细的标签。 代码是:
接头
<link href="css/jquery.atwho.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery.js"></script>
<script src="js/jquery.caret.js"></script>
<script src="js/jquery.atwho.js"></script>
TextBox (用于创建主题标签)
<input type="text" id="questionName" name="questionName" style="color: #3A404C !important;" placeholder="Type here" class="span11 QuestionBox"/>
At.js功能
$('#questionName').atwho({
at: "#",
data:["Boston", "Chicago", "Miami", "Orlando", "Atlanta", "Philadelphia", "NewYork", "Indiana", "Charlotte", "Milwaukee", "Detroit", "NewJersey", "Toronto", "Washington", "Cleveland"]
})
谢谢!