Jump to content
  • 0

Disable Textarea - отключить в зависимости от Radio Button


Stanislav1
 Share

Question

Я использую следующий код для отключения input полей, но в случае с textarea поле не отключается

<html>
<head>
<script language="JavaScript">


function dis(){
document.all['text_field'].disabled=document.all['s1'].checked;
}

</script>
</head>

<body>


<input type="radio" name="sel1" onClick="dis()" id="s1"> Disable

<input type="radio" name="sel1" onClick="dis()"> Enable

<input type="text" id="text_field" size="30">



<textarea id="text_field" rows="8" ></textarea>

</body>
</html>

подскажите, как сделать, чтобы поле textarea было неактивным при нажатии на кнопку Disable

Это мне нужно для формы регистрации. Т.е. у меня будет несколько типов юзеров: компания и обычный пользователь. Перым этам пользователь при регистрации выбирает к какому типу он относится и в зависимости от этого для него будет активным/неактивным поля "Название компании", "Описание компании" и т.д.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

ну, во-первых ты категорически неправ. id должно быть 1 раз уникальное на странице. лучше сделай так -при клике на radio - список элементов с такими-то id изменяет параметр disabled и все

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy