当一组单元格的数量等于另一组单元格的数量时显示弹出消息

时间:2016-08-08 12:37:14

标签: javascript css html5

当黄色单元格数等于红色单元格数时,我正在寻找显示弹出消息的脚本。我已经在下面列出了这个概念的图片。任何帮助表示赞赏。

example colored table

2 个答案:

答案 0 :(得分:1)

希望各个彩色块的类别为red_blockyellow_block

setInterval(function(){ 
 var reds = document.getElementByClassName('red_block')
 var yellows = document.getElementByClassName('yellow_block')
 if(reds.length == yellows.length){
   alert("what ever")
 }
}, 1);

document.getElementByClassName将返回具有该类

的元素数组

将时间间隔设为1ms,以便每时每刻检查值

答案 1 :(得分:0)

我已经包含了以下示例。



json

library(httr)

pc_json <- list(
  postcodes = c("PR3 0SG", "M45 6GN", "EX165BL")
)
res <- POST("https://api.postcodes.io/postcodes"
            , body = pc_json
            , encode = "json")
appData <- content(res)
&#13;
$(document).ready(function () {

    var color = "White";
    $("#btnWhite").click(function () {
        color = "#FFFFFF"
    });
    $("#btnYellow").click(function () {
        color = "#FFFF00"
    });
    $("#btnRed").click(function () {
        color = "#FF0000"
    });
    $("#btnBlue").click(function () {
        color = "#0070C0"
    });
    $("#btnGreen").click(function () {
        color = "#00FF00"
    });

    $("table tr td").click(function () {
        $(this).css("background-color", color);
    });

});
&#13;
&#13;
&#13;