|
|
|
การเช็ค ค่าจาก radio ครับ ถ้า เลือก ทั้งหมด ให้ enable textarea ถ้า ไม่ทั้งหมด ให้ disableไว้เหมือน เดิม |
|
|
|
|
|
|
|
ลองใช้ jquery ดูนะ
if($("#selector").is(":checked")) {
$('textarea').attr('readonly','readonly');
}
|
|
|
|
|
Date :
2013-01-22 13:21:36 |
By :
LuckyStar |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดให้ครับ
Code (PHP)
<html>
<script type="text/javascript">
function disableIt(object,boolVal){
object.disabled=boolVal;
}
</script>
<body>
<form name="form1">
<textarea name="bb" cols="30" rows="5"></textarea>
<p>
<input name="radiobutton" type="radio" value="radiobutton" onClick="disableIt(form1.bb,true)">
Disable It</p>
<p>
<input name="radiobutton" type="radio" value="radiobutton" onClick="disableIt(form1.bb,false)">
Enable It</p>
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-01-22 13:28:59 |
By :
namebom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|