Jump to content
  • 0

Как сделать активным поле textarea при нажатии на checkbox?


sergey_sergey
 Share

Question

3 answers to this question

Recommended Posts

  • 0
Ребят, помогите с кодом. Как при помощи javascript сделать так, чтобы при нажатии на checkbox становилось активным поле textarea и наоборот?

На этом форуме десятки раз обсуждалась эта тема.

Поиск находится в правом верхнем углу.

Link to comment
Share on other sites

  • 0

Нашёл такой скрипт:

<script>

var checkobj

function agreesubmit(el){
checkobj=el
if (document.all||document.getElementById){
for (i=0;i<checkobj.form.length;i++){ //hunt down submit button
var tempobj=checkobj.form.elements[i]
if(tempobj.type.toLowerCase()=="textarea")
tempobj.disabled=!checkobj.checked
}
}
}

function defaultagree(el){
if (!document.all&&!document.getElementById){
if (window.checkobj&&checkobj.checked)
return true
else{
alert("Please read/accept terms to submit form")
return false
}
}
}

</script>
<form>
<input name='akcia' type='checkbox' onClick='agreesubmit(this)' value='1' />Акции:<br>
<textarea name='text3' disabled></textarea>
</form>

Работает как надо, только теперь при отжатии чекбокса disabled становятся все textarea на странице.

Никак не могу понять, как прикрутить его только к определённой одной textarea.

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