|
|
|
ช่วยแนะนำวิธีแสดงผล jQuery Modal ด้วยครับ ผมอยากจะให้ jQuery Modal แสดงผล วันละ 1 ครั้ง |
|
|
|
|
|
|
|
ใช้ cookie กำหนดเอาได้ครับ ว่า ถ้าเข้ามาแล้วให้เชค cookie ก่อน ถ้ามีแล้วก็ไม่ต้องโชว์
Jquery COokie ก็ได้ครับ ง่ายดี
http://github.com/carhartl/jquery-cookie
|
ประวัติการแก้ไข 2013-07-13 19:09:46
|
|
|
|
Date :
2013-07-13 19:07:34 |
By :
deawx |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Session / Cookies ครับ if เอาง่าย ๆ ไม่ยาก
|
|
|
|
|
Date :
2013-07-13 20:46:12 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลืมบอกว่ากระทู้เก่า ๆ ก็มีครับ
|
|
|
|
|
Date :
2013-07-13 20:46:39 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จะลองดูครับ พี่เดี่ยว พี่วิน ได้ ผลยังไงจะมาบอกครับ
|
|
|
|
|
Date :
2013-07-14 23:09:29 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<!DOCTYPE HTML>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="jquery.cookie.js"></script>
<title>:: jQuery Cookie ::</title>
<meta charset="UTF-8">
</head>
<body>
<h2>:: jQuery Cookie ::</h2>
<div class="content"></div>
<script type="text/javascript">
$(document).ready(function(){
if($.cookie("visits") == null){
//alert("Create Cookie");
$(".content").text("Create Cookie");
/*
$.cookie("cookie_name", "cookie_values, { option });
this example set the cookie expires 1 day
*/
$.cookie("visits", "visited", {expires:1});
}else{alert($.cookie("visits", "visited", {expires:1}));
//alert("Cookie is already");
$(".content").text("Cookie is already");
}
});
</script>
</body>
</html>
|
ประวัติการแก้ไข 2013-07-15 09:39:35 2013-07-15 09:41:21
|
|
|
|
Date :
2013-07-15 09:37:20 |
By :
popnakub |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|