gpt4 book ai didi

jquery - jquery ui 自动完成中的 xml 响应中的 CSS

转载 作者:行者123 更新时间:2023-11-28 14:35:40 27 4
gpt4 key购买 nike

有没有办法为 xml 响应中的标签的一部分提供不同的 css 类?换句话说,标签值现在是

label: $( "name", this ).text() + ", " + ( $.trim( $( "countryName", this ).text() ) || "(unknown country)" ) + ", " + $( "countryCode", this ).text()

我希望只给 $( "countryCode", this ).text() 一个不同的 css 类,因为我希望它的字体必须小于其他字体(名称和国家名称)

有办法吗?

success: function( xmlResponse ) {
var data = $( "geoname", xmlResponse ).map(function() {
return {
value: $( "name", this ).text()
,
label: $( "name", this ).text() + ", " +
( $.trim( $( "countryName", this ).text() ) || "(unknown country)" ) + ", " +
$( "countryCode", this ).text()
,
id: $( "geonameId", this ).text()
};
}).get();

最佳答案

将它包装在 span 中并为 span 赋予类。由于您使用的是 XML,您可以考虑使用更有意义的标记并为其设置样式(除非这只是 XHTML)。

关于jquery - jquery ui 自动完成中的 xml 响应中的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6769219/

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