Jump to content
  • 0

Доступность полей


Alex_Mak
 Share

Question

Ребят, подскажите, как сделать так, чтобы доступность полей менялась при изменении параметра checked у checkbox, расположенном на этой же странице?

Т.е -- поставил галочку поле сразу стало able. Убрал галочку -- поле disable.

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

<input id="t" type="text"/>

<input type="checkbox" onclick="d();"/> Checkbox

<script>

function d() {

if (!document.all.t.disabled)

document.all.t.disabled = 1;

else

document.all.t.disabled = null;

}

</script>

вот, что получилось. только траббл в том, что елси просто написать, то все пашед, а если они как ячейки в таблице, да еще и в разных таблицах -- не пашед.

кто знает, что с этим делать?

Link to comment
Share on other sites

  • 0

<input id="t" name="h" type="text" disabled/>

<input type="checkbox" onclick="f();"/> Checkbox

<script>

function f()

{

if (!h.disabled) h.disabled=1;

else h.disabled=null;

}

</script>

и так пашед. но если в таблице, все равно не хочет работать ;)(

ну что мне с ней сделать? *wall*

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