我读了很多类似的问题,但还是想不通。
我所说的'value‘是指用户在输入中插入的文本,我不知道我是不是说得很清楚
帮我个忙,非常感谢
发布于 2012-01-28 00:57:39
使用CSS。
.ui-autocomplete-input {
word-spacing: normal;
line-height: normal;
text-transform: none;
text-indent: 0px;
text-shadow: none;
}发布于 2012-01-28 01:00:21
使用插件的select事件,您可以在其中获取它的值。
select: function(e, ui){
alert(ui.item.value);
}https://stackoverflow.com/questions/9036900
复制相似问题