在 html5 中,输入字段具有以下格式
<input type='text', data-provide= "typeahead", data-items="4",
autocomplete="off", data-source='["Business and Commercial Laws",
"Consumer Laws", "Criminal Laws"]', name='userInputName',
placeholder='Court of practice'> Data </input>
我如何创建链接上面的标签与data-source
不是内联的,而是外部的。我最终想重用数据源。
编辑:我typeahead
在引导程序中使用插件。我在 node.js 框架中编程。所以我可以使用
- var ArrayVar = [ "this", "that", "here"]
data-source='#{ArrayVar}'
但是上面将数组ArrayVar
转换为不需要的字符串"this, that, here"
,因为data-source
应该是数组。