我正在使用Tag-it来生成
我遇到的问题是在输入字段上分配水印。在Visual Studio中,我看到以下内容: -
<ul id="mytags" class="tagclasspost">
<!-- Existing list items will be pre-added to the tags -->
</ul>
在Firebug中我看到了: -
<div id="tagsimpletip" class="divpostsendtag">
<div>
<ul id="mytags" class="tagclasspost tagit ui-widget ui-widget-content ui-corner-all">
<li class="tagit-new">
<input class="ui-widget-content ui-autocomplete-input" type="text" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true">
</li>
</ul>
</div>
答案 0 :(得分:1)
在输入上调用tagit时,可以使用可选的占位符文本参数。
示例:
$(tags_selector).tagit({
placeholderText: '**your placeholder**',
afterTagAdded: function(event,tag){
// Some processing
},
afterTagRemoved: function(event,tag){
// Some processing
}
});
参考此链接: Placeholder text attribute