从jquery更新时,jscolor文本框背景未更改

时间:2016-11-30 14:11:24

标签: javascript jquery html jscolor

html内容

{
  "error": {
    "errors": [
      {
        "domain": "global",
        "reason": "exportSizeLimitExceeded",
        "message": "This file is too large to be exported."
      }
    ],
    "code": 403,
    "message": "This file is too large to be exported."
  }
}

从jquery

更新文本框值
<input type="text" id="menuBg" class="jscolor"  autocomplete="off" value="fff">

enter image description here

给定值在文本字段中更新,但背景颜色不会更新。

1 个答案:

答案 0 :(得分:1)

您应该更改css颜色属性:

$('#menuBg').css('background-color','#2AFF17');

更改val属性只会更改文本字段的内容。

相关问题