我正在制作一个类似于 stackoverflow.com 的应用程序为了发布我们添加标签的问题,我想知道在输入逗号后如何更改文本样式。
问问题
5288 次
1 回答
0
为此,您需要使用 JS。
这就是逻辑的样子。它只是一个让你开始的基本模板。
<input type="text" onchange="tagit()" id="tags" />
<script>
function tagit(){
var tags=$("#tags").val() //get the value of the input tag.
// break the tags based on comma
// wrap each tag around a <span> element
// style the <span> element
}
</script>
您还可以在 jQuery http://api.jquery.com/change/中查看.change()事件
于 2013-10-01T07:08:08.093 回答