|
|
|
ใช้ if ในเงื่อนไขถ้าใช้ให้เป็นสีหนึ่งถ้าไม่ใช่ให้เป็นอีกสีใน การแสดงผลที่ดึงจากฐาน Mysql |
|
|
|
|
|
|
|
แนวคิด(PHP)
if($condition=="พร้อมส่ง")
{
?>
<span class=style4 style=color:red;font-weight:normal;>(Pre-order)</span>
<?
}
elseif($condition=="สั่งซื้อ")
{
?>
<span class=style4 style=color:green;font-weight:normal;>(Pre-order)</span>
<?
}
|
ประวัติการแก้ไข 2012-05-21 12:06:20
|
|
|
|
Date :
2012-05-21 12:05:54 |
By :
mangkunzo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<style type="text/css">
.container{
display:block;
border:1px solid gray;
width:400px;
}
.content{
width:98%;
text-align:left;
}
</style>
<div class="container" >
<div class="content" id="ready">1.คุณอนันต์ มเหศวร</div>
<div class="content" id="ordering">2.คุณเอนก มีบุญมาก</div>
<div class="content" id="ordering">3.คุณอรวรรณ เงินยวง</div>
<div class="content" id="ready">4.คุณรชพล มิตรไพศาล</div>
</div>
<script type="text/javascript">
$(document).ready(function(){
$("div#ready").each(function(){
$(this).css({"color":"red" , "padding":"3px" }).append(" [พร้อมส่ง]");
});
$("div#ordering").each(function(){
$(this).css({"color":"green" , "background-color":"#ffffcc" , "padding":"3px" }).append(" [กำลังสั่งซื้อ]");;
});
});
</script>
|
|
|
|
|
Date :
2012-05-21 12:13:28 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-05-21 12:25:59 |
By :
sakuraei |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณครับ
|
|
|
|
|
Date :
2012-05-21 19:32:01 |
By :
springlk |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|