<textarea id="Box" class="tags form-control" placeholder="X Axis values"></textarea>
我希望用标签方式在文本框区域中显示用户选择的选项和删除选项。
如何使用textarea的bootstrap标签输入?我已经应用了data-role =&#34; tagsinput&#34;。但标签输入不起作用。我们知道,我们在Stackoverflow中遇到了同样的问题。但是没有解决方案。
的解决方案/提示答案 0 :(得分:0)
Bootstrap tags-input does not work with textarea
. Support is not provided.
However you can use it with input type="text"
and apply the following css to make it work like textarea.
.bootstrap-tagsinput {
min-height: 100px;
}
答案 1 :(得分:0)
在输入文本上尝试此css以在Input Like textarea上滚动
.tags-input {
max-width: 100%;
line-height: 22px;
overflow-y: scroll;
overflow-x: scroll;
height: 65px;
cursor: text;
}
答案 2 :(得分:0)
按照此步骤
<style>
.bootstrap-tagsinput {
line-height: 15px !important;
min-height: 165px;
padding-top: 20px;
padding-bottom: 20px
}
span.tag.label {
position: relative;
float: left;
margin: 2px 5px;
}
.bootstrap-tagsinput input {
position: relative;
float: left;
height: auto;
margin-top: 4px;
margin-left: 5px;
padding: 0px;
text-align: left;
width: auto;
}
<style/>
<input type="text" class="form-control inputtags" data-role="tagsinput" name="keywords">