ถามเรื่องการกดปุ่ม เราจะเช็คยังไงว่ากดปุ่มนี้ไปกี่ครังยังไงครับ
ประมาณนี้ ไปทำต่อเองนะครับ
Code (JavaScript)
var counter=0;
var result=false;
backgound="";
function clickCount()
{
return counter++;
}
function changBackground()
{
return backgound = counter==5 ? "backgound:yellow" : "";
}
function reset()
{
counter=0;
result=false;
return;
}
$(function(){
$("btn").click(function(){
clickCount();
if(counter==5){
$("#object_id").attr("style",background);
reset();
}
});
});
Date :
2019-09-25 10:28:15
By :
mongkon.k
ช่วยหน่อยครับลองเเล้วไม่ได้
Date :
2019-09-30 08:59:16
By :
1768876979829526
ตอบความคิดเห็นที่ : 6 เขียนโดย : mongkon.k เมื่อวันที่ 2019-09-30 10:26:50
รายละเอียดของการตอบ ::
ติดอยู่นี่ครับ
กดทุกครั้งที่5ได้เเล้วครับ เเล้วเราจะให้มันเเสดงตารางข้างล่างยังไงครับตอนนี้มันเเสดงเฉพาะตารางเเรก
Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- <link rel="stylesheet" type="text/css" href="style.css"> -->
<style>
*{
margin: 0;
padding: 0;
}
.Analysis {
width:70%;
height: 139px;
margin:0 auto;
border:1px solid #000000;
margin-bottom: 100px;
}
.containertt {
width:70%;
height: 50px;
margin:0 auto;
text-align: center;
}
table, th {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
}
td {
border: 1px solid black;
border-collapse: collapse;
width: 50px;
height: 50px;
}
.grid-container {
display: grid;
grid-template-columns:auto auto auto auto auto auto auto auto auto auto auto auto auto;
grid-gap: 2px;
background-color: #2196F3;
padding: 10px;
}
.grid-container > div {
background-color: lightblue;
text-align: center;
padding: 10px ;
font-size: 30px;
}
#item1 {
grid-row: 1 / 4;
}
</style>
</head>
<body>
<table class="table" id="demo1" style="background-color:#E6E6E6">
<tr >
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<div class="grid-container" >
<div onclick="myFunction(this)" id="item1" class="test0"><font color=red>0</font></div>
<div onclick="myFunction(this)" class="test" id="test2">2</div>
<div onclick="myFunction(this)" class="test" id="test4">4</div>
<div onclick="myFunction(this)" class="test" id="test6"><font color=red>6</font></div>
<div onclick="myFunction(this)" class="test"><font color=red>8</font></div>
<div onclick="myFunction(this)" class="test">10</div>
<div onclick="myFunction(this)" class="test"><font color=red>12</font></div>
<div onclick="myFunction(this)" class="test"><font color=red>14</font></div>
<div onclick="myFunction(this)" class="test">16</div>
<div onclick="myFunction(this)" class="test"><font color=red>18</font></div>
<div onclick="myFunction(this)" class="test"><font color=red>20</font></div>
<div onclick="myFunction(this)" class="test">22</div>
<div onclick="myFunction(this)" class="test">24</div>
<div onclick="myFunction(this)" class="test" id="test1">1</div>
<div onclick="myFunction(this)" class="test" id="test3"><font color=red>3</font></div>
<div onclick="myFunction(this)" class="test" id="test5">5</div>
<div onclick="myFunction(this)" class="test">7</div>
<div onclick="myFunction(this)" class="test"><font color=red>9</font></div>
<div onclick="myFunction(this)" class="test">11</div>
<div onclick="myFunction(this)" class="test">13</div>
<div onclick="myFunction(this)" class="test"><font color=red>15</font></div>
<div onclick="myFunction(this)" class="test">17</div>
<div onclick="myFunction(this)" class="test">19</div>
<div onclick="myFunction(this)" class="test">21</div>
<div onclick="myFunction(this)" class="test">23</div>
<!-- <div onClick="onClick()" class="test" id="test1"
onMouseover="this.style.backgroundColor='yellow';"
onMouseout="this.style.backgroundColor='lightblue';">333</div>
<div class="test"id="test2"
onMouseover="this.style.backgroundColor='yellow';"
onMouseout="this.style.backgroundColor='lightblue';">444</div>
<div class="test" id="test3"
mouseenter="this.style.backgroundColor='yellow';"
mouseleave="this.style.backgroundColor='lightblue';"
>555</div> -->
</div>
<script>
myFunction = i => $("#demo1 td:empty:first").html($(i).html())
var tooClick = 0;
var totalClick = 0; // จำนวนคลิกทั้งหมด
var evenClick = 0; // จำนวนคลิกเลขคู่
var oddClick = 0; // จำนวนคลิกเลขคี่
var result=false;
var backgound="";
var clicks = 0;
var po = 0;
function clickCount()
{
clicks += 1; //ตรงนี้ใส่ clicks += 1;
po = Math.floor(Math.random() * 4);
}
function changBackground()
{
return backgound = clicks==4 ? "backgound:yellow" : "";
}
function reset()
{
$(".test").css("background-color", "lightblue");
$(".test1").css("background-color", "lightblue");
$(".test2").css("background-color", "lightblue");
$("#test1").css("background-color", "lightblue");
$("#test2").css("background-color", "lightblue");
evenClick=0;
oddClick=0;
tooClick=0;
result=false;
return;
}
function pop() {
alert("Hello! I am an alert box!");
window.location.reload();
}
$(function(){
$(".test").click(function(){
clickCount();
document.getElementById("clicks").innerHTML = clicks;
document.getElementById("demo").innerHTML = $(this).text();
document.getElementById("ran").innerHTML = po;
if ($(this).text()%2==0) {
evenClick++; //ตรงนี้ใส่ evenClick++;
oddClick++; //ตรงนี้ใส่ oddClick++;
if(evenClick % 4 ==0){
if (po%2==0) {
$("#test1,#test2").css("background-color", "yellow");
}else if (po%2==1) {
$("#test3,#test4").css("background-color", "#80E12A");
}
}else if(evenClick % 5 ==0){
document.getElementById("golf").innerHTML = $(this).text();
reset();
}
}else if ($(this).text()%2==1) {
oddClick++; //ตรงนี้ใส่ oddClick++;
evenClick++; //ตรงนี้ใส่ evenClick++;
if(oddClick % 4 ==0){
if (po%2==0) {
$("#test5,#test6").css("background-color", "#73E1E1");
}else if (po%2==1) {
$("#test3,#test4").css("background-color", "#80E12A");
}
}else if(oddClick % 5 ==0){
document.getElementById("golf").innerHTML = $(this).text();
reset();
}
}
if (clicks>60) {
pop();
}
});
});
</script>
<p>Clicks: <a id="clicks">0</a></p>
<p id="demo"></p>
<p>ran: <a id="ran">0</a></p>
</script>
<table class="table" id="demo2" style="background-color:#E6E6E6" >
<tr>
<td>ครั้งที่5</td>
<td id="golf"></td>
<td id="golf2"></td>
<td id="golf3"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
<table>
<tr>
<td>ถูก</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr>
<td>ผิด</td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</body>
</html>
ประวัติการแก้ไข 2019-09-30 10:36:22 2019-09-30 18:32:02 2019-09-30 18:32:09 2019-09-30 19:13:02 2019-09-30 19:17:10 2019-10-01 11:31:20 2019-10-02 13:40:53 2019-10-07 10:02:47
Date :
2019-09-30 10:35:50
By :
1768876979829526
Code (JavaScript)
var number=21;
if(number%2==0){
alert("เลขคู่");
}else{
alert("เลขคี่");
}
Date :
2019-10-03 14:30:45
By :
mongkon.k
เช็คทีละตัวครับ
Date :
2019-10-04 11:53:02
By :
mongkon.k
Load balance : Server 03