TwojePC.pl © 2001 - 2024
|
|
A R C H I W A L N A W I A D O M O Ś Ć |
|
|
|
[O.T] jak za pomoca jednego checkboxa ustawic na enable wiecej niz jedna textarea ? , PaszkfiL 25/06/08 16:19 Mamy cos takiego:
<script>
function enable(){
if (document.forms[0].a.disabled == false)
{
document.forms[0].a.disabled = true;
}
else
{
document.forms[0].a.disabled = false;
}
}
</script>
<body>
<form>
<input type="checkbox" onclick="enable()">
<input name="a" type="text" disabled>
<input name="b" type="text" disabled>
<input name="c" type="text" disabled>
<input name="d" type="text" disabled>
<input name="e" type="text" disabled>
</form>
przy zaznaczeniu checkboxa aktywe robi sie pole a ... jak uzyskac efekt aby zaznaczyly sie wszystkiego ?
zaznacze tylko ze sie ucze dopiero w zwiazku z tym prosze o lopatologiczne klarowanie :)o([-_-])o ..::Love::BaSS::.. - a to nie dziala? , myszon 25/06/08 16:36
document.forms[0].b.disabled = true; itd...
Nie znam JS zbyt dobrze, ale nie powinno to być tak zrobione, że masz id="" w formie i do tego id sie odnosisz przez document.getelementById? - chodzi o to , PaszkfiL 25/06/08 17:20
ze checkbox jest jeden, i za pomoca jednego checkoboxa uaktywnic wszystkie textarea ... a w takiej formie dziala tylko pierwszy :)o([-_-])o ..::Love::BaSS::.. - WTF ? , pachura 25/06/08 17:22
Musi dzialac.
document.forms[0].a.disabled = true;
document.forms[0].b.disabled = true;
document.forms[0].c.disabled = true;
document.forms[0].d.disabled = true;
document.forms[0].e.disabled = true;- dokladnie , KwiateK 26/06/08 09:22
U mnie dziala takie cos:
<script>
function enable(){
if (document.forms[0].a.disabled == false)
{
document.forms[0].a.disabled = true;
document.forms[0].b.disabled = true;
document.forms[0].c.disabled = true;
document.forms[0].d.disabled = true;
document.forms[0].e.disabled = true;
}
else
{
document.forms[0].a.disabled = false;
document.forms[0].b.disabled = false;
document.forms[0].c.disabled = false;
document.forms[0].d.disabled = false;
document.forms[0].e.disabled = false;
}
}
</script>
<body>
<form>
<input type="checkbox" onclick="enable()">
<input name="a" type="text" disabled>
<input name="b" type="text" disabled>
<input name="c" type="text" disabled>
<input name="d" type="text" disabled>
<input name="e" type="text" disabled>
</form>Nie jestem facetem na jedną noc.
Aż tyle czasu to ja nie mam... - tez dziala , PaszkfiL 26/06/08 09:26
j.wo([-_-])o ..::Love::BaSS::..
- tak na szybkensa sklecone , Holyboy 25/06/08 19:42
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script>
function enable(e) {
state = !e.checked;
txt = document.getElementById('formik').getElementsByTagName('INPUT');
for (i=0;i<txt.length;i++) {
if (txt[i].type == "text") {
txt[i].disabled = state;
}
}
}
</script>
</head>
<body>
<body>
<form id="formik">
<input type="checkbox" onclick="enable(this)">
<input name="a" type="text" disabled>
<input name="b" type="text" disabled>
<input name="c" type="text" disabled>
<input name="d" type="text" disabled>
<input name="e" type="text" disabled>
</form>
</body>
</html>Strength is irrelevant.
Resistance is futile.
We wish to improve ourselves. - dzieki :) , PaszkfiL 26/06/08 09:25
dziala ...
teraz walki ciag dalszy :D potrzebuje kilka rzedow takowych text area z checkboxami :) i kazdy musi dziala samodzielnie :Do([-_-])o ..::Love::BaSS::.. - mozesz podzielic , myszon 26/06/08 15:03
formularz na pare logicznych kawalkow dzieki <fieldset> wtedy jednemu przyciskowi przypisujesz jeden fieldset
|
|
|
|
|
All rights reserved ® Copyright and Design 2001-2024, TwojePC.PL |
|
|
|
|