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">
给定值在文本字段中更新,但背景颜色不会更新。
答案 0 :(得分:1)
您应该更改css颜色属性:
$('#menuBg').css('background-color','#2AFF17');
更改val属性只会更改文本字段的内容。