我在我的网站中为三个不同的类别实施了一个标签系统。我为 Twitter 帐户设置了它,所以我有“关键字”、“提及”和“标签”。我需要的是,当用户在text input
for Mentions中将标签插入到prepend
输入文本之前的“@”符号中时。除了“#”符号外,主题标签也是如此。我已经整理了一个演示,展示了我到目前为止所拥有的东西。任何帮助将不胜感激。
<div id="wrapper">
<table>
<tr>
<th></th>
<td id="keyword-filter">
<h5>Keywords</h5>
<input type="text" id="keywordInput">
<br>
Include:
<input type="radio" name="keywordInclude" checked="true">Any
<input type="radio" name="keywordInclude">All
<b>Keywords</b>
</td>
</tr>
<tr>
<th></th>
<td id="mention-filter">
<h5>Mentions</h5>
<input type="text" id="mentionInput">
<br>
Include:
<input type="radio" name="mentionInclude" checked="true">Any
<input type="radio" name="mentionInclude">All
<b>Mentions</b>
</td>
</tr>
<tr>
<th></th>
<td id="tag-filter">
<h5>Hashtags</h5>
<input type="text" id="hashtagInput">
<br>
Include:
<input type="radio" name="tagsInclude" checked="true">Any
<input type="radio" name="tagsInclude">All
<b>Hashtags</b>
</td>
</tr>
</table>