如果执行另一个功能,请更改DIV的背景颜色

时间:2015-08-23 04:04:45

标签: jquery css

我有一个函数可以查找输入到表单中TextArea字段的单词。 我需要做的是如果执行该功能改变另一个DIV的背景颜色。

我的功能:

$(document).ready(function() {
$('#FeedBackComments').highlightTextarea({

    words: {
    color: '#ADF0FF',
    words: ['one','two','three',' four']
    },
    debug: false,
    caseSensitive: false
    // change the colour of DIV
    });
});

任何建议和帮助都会很棒。

由于

2 个答案:

答案 0 :(得分:0)

只需添加

$("divid").css("background-color","red");  /*or your color of choice*/

或者你可以试试

$( "body" ).contents().find( "divid" ).css( "background-color", "red" );

答案 1 :(得分:0)

这个怎么样:

$('#textarea_id').keyup(function() {
   var text = $(this).val();

   if (['word1', 'word2'].indexOf(text) != -1) {
       $('#div_id').css('backgroundColor', 'red');
   }
});

小提琴:http://jsfiddle.net/nwff7ygv/