View Single Post
ישן 27-06-06, 13:37   # 4
-roee-
חבר על
 
מיני פרופיל
תאריך הצטרפות: Nov 2005
מיקום: IL
הודעות: 864

-roee- לא מחובר  

ציטוט:
נכתב במקור על ידי Distortion
משהו כזה:
HTML קוד:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-8-i" />
<title>Untitled Document</title>
<script type="text/javascript">
    function disableInput(x)
        {
        if(x==1)
            {
            document.getElementById("input2").disabled=true;
            document.getElementById("input1").disabled=false;
            }
                else
                    {
                    document.getElementById("input1").disabled=true;
                    document.getElementById("input2").disabled=false;
                    }
        }
</script>
</head>
<body>
<form id="bla" method="post" action="">
    <div><input type="radio" name="rButton" value="1" onclick="disableInput(1);" /> 1</div>
    <div><input type="radio" name="rButton" value="2" onclick="disableInput(2);" /> 2</div>
    <div><input type="text" id="input1" name="1" /></div><div><input type="text" id="input2" name="2" /></div>
</form>
  <p>
    <a href="http://validator.w3.org/check?uri=referer"><img
        src="http://www.w3.org/Icons/valid-xhtml10"
        alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
  </p>
</body>
</html>
סוס אחי תודה רבה יש לי שאלה,
אפשר שכאשר תיבה מסויימת נחסמת אז הרקע שלה הופך לאפור?

תודה
  Reply With Quote