|
|
|
หากต้องการให้ background ของ inbox เป็นสีเทาสำหรับค่าเริ่มต้น แต่หากมีการเปลี่ยนแปลงค่าให้เปลี่ยนสีขาว ต้องทำอย่างไรครับ |
|
|
|
|
|
|
|
Code (PHP)
<script>
$(document).ready(function() {
$("input[name=input_name]").on("change", function(){
$(this).css("background-color", "white");
});
});
</script>
|
|
|
|
|
Date :
2018-09-27 17:52:05 |
By :
devilboy2535 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<style>
.text_org {
color: #FF0000;
font-family: Verdana;
font-weight: bold;
font-size :
width: 30%;
height: 30px;
background-color: #808080;
}
.text_chg{
color: #000000;
font-family: Verdana;
font-weight: bold;
font-size :
width: 30%;
height: 30px;
background-color: #808080;
}
</style>
<input type="text" class="text_org" onchange="this.setAttribute('class', 'text_chg'); ">
|
|
|
|
|
Date :
2018-09-27 19:37:11 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
$('input').on('change', function(){
$(this).css("background-color", "#fff");
}
|
|
|
|
|
Date :
2018-09-28 09:29:53 |
By :
Jatmentz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|