本文介绍了更改dropdownlist的背景颜色JQuery的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
下面的代码似乎没有改变下拉列表的背景颜色。请指导。
Below code doesn't seem to change the background color of dropdownlist. Please advice.
var TextHighlightCss = {
'background': '#FFFFAA',
'border': '1px solid #FFAD33'
};
$('#ddlCarriers option:selected').css('TextHighlightCss');
提前感谢
BB
BB
推荐答案
$('#ddlCarriers option:selected').css(TextHighlightCss);
你传递一个字符串,而不是你的变量。
You're passing a string, not your variable.
这篇关于更改dropdownlist的背景颜色JQuery的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!