gpt4 book ai didi

javascript - 如何: jQuery autocomplete for multiple valules with ";" semicolon separator support

转载 作者:行者123 更新时间:2023-11-29 18:30:31 25 4
gpt4 key购买 nike

我已将 this.value = terms.join( "; ") 行从逗号 (,) 更改为 (;)第一个建议对我有用。但是当我输入新单词时分号后没有显示任何建议。我已经下载了jQueryUI demo

 select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( "; " );
return false;
}

最佳答案

function split( val ) {
return val.split( /\;\s*/ );
}

按照我上面写的那样改变这个函数...

关于javascript - 如何: jQuery autocomplete for multiple valules with ";" semicolon separator support,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8929359/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com