带有.css()串联问题的jQuery变量?

时间:2012-08-30 19:34:11

标签: javascript jquery

我正在尝试更改模糊按钮的CSS。我怀疑它可能是一个连接问题,但我无法弄清楚我做错了什么。这是我的代码......

HTML

<input type="text" value="blue" id="textinput">
<button>Button</button>
<span id="color">red</span>

CSS

button {
 background-color:blue;
 background-image: -webkit-linear-gradient(top, white 0%, black 100%);    
}

的jQuery

$("#textinput").blur(function () {
     setTimeout(function () {
          endColor = $("#textinput").val();
          $('button').css({ 
              'background-color' : endColor
              'background-image' : '-webkit-linear-gradient(top, #309ACB 0%,' + endColor + '100%)'       });
     }, 500);
});​

FIDDLE LINK

http://jsfiddle.net/krishollenbeck/p2jah/20/

删除渐变CSS时,它工作正常。所以我猜我连接错误的变量。但是我尝试过多种方式,但似乎无法弄明白。这可能是非常明显的事情。

另请注意。我正在使用webkit渐变,因此在chrome或safari中进行测试。在此先感谢您的帮助。

2 个答案:

答案 0 :(得分:5)

您在隐藏颜色的变量和百分比字符串之间缺少空白

'-webkit-linear-gradient(top, #309ACB 0%,' + endColor + ' 100%)'
                                                        ^
                                                        |
                                                        +-- Here

调试此类情况的一种好方法是使用console.log查看连接字符串的结果。在这种情况下,例如,您将获得red100%而不是red 100%

使用String.format()的替代方案,即imho,不易出错。通过这种方式,您可以(更多)清楚地看到您是否遗漏了某些内容:

'-webkit-linear-gradient(top, #309ACB 0%, {0} 100%)'.format(endColor)

请注意,某些浏览器不支持此功能,但您可以使用this pollyfill来定义它。

答案 1 :(得分:5)

你错过了一个逗号和空格(见Joao的回答)

$("#textinput").blur(function () {
     setTimeout(function () {
          endColor = $("#textinput").val();
          $('button').css({ 
              'background-color' : endColor, // < here        -> this way too               v here
              'background-image' : '-webkit-linear-gradient(top, #309ACB 0%,' + endColor + ' 100%)'       });
     }, 500);
});​