Jump to content
php.lv forumi
  • 0

atzīmē checkbox


Cibiņš

Question

Tātad man ir javaskripts, kas neļauj ķeksēt vairāk par vienu ķeksi, ja viens ķeksis jau kkur ir ielikts tad ja ieķeksē kādu citu vērtību tad ķeksis pārlec uz nākamo iezīmēto vērtību neļaujot atķeksēt vairāk par vienu ķeksi. Tātad checkkboxa vārds ir tikai viens, uz ko JavaScripts reaģē. Bet kā var iesetot JavaScript kodā, lai katram checkboxam ir savs "name" un Javascripts darbotos tieši tāpat kā šobrīd, neļaujot atķeksēt vairāk par vienu ķeksi? Savādāk nevar tak uz vienu checkbox name pārvadīt dažādus datus datubāzē.. :(

 

<html>
<head>
<script type="text/javascript">
function kastuParbaude(cb) {
for (j = 0; j < 8; j++) {
if (eval("document.forma.kaste[" + j + "].checked") == true) {
document.forma.kaste[j].checked = false;
if (j == cb) {
document.forma.kaste[j].checked = true;
        }
     }
  }
}
</script>
</head>
<body>
<form name = "forma">
Izvele 1<input type="checkbox" name="kaste" onClick="javascript:kastuParbaude(0)"><br>
Izvele 2<input type="checkbox" name="kaste" onClick="javascript:kastuParbaude(1)"><br>
Izvele 3<input type="checkbox" name="kaste" onClick="javascript:kastuParbaude(2)"><br>
</form>
</body>
</html>

Edited by Cibiņš
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Rekur ar jquery funkcija, kas atļauj atķeksēt tikai divus ķekšus. (ķekši ir kaimiņi, atrodas vienā p konteinerī)

Skaista dzīver ar jquery, un markups arī nav jāpiesārņo :)

 

	//Atļaujam tikai divus čekboksus atzīmēt vienlaicīgi
$(document).ready( function(){
	$("p input[type='checkbox']").click( function(){
		if($(this).parent().children(":checked").length == 2){
			$(this).parent().children(":not(:checked)").attr("disabled","disabled");
		}else{
			$(this).parent().children().removeAttr("disabled");
		}
	});	
});

Edited by briedis
Link to comment
Share on other sites

  • 0

wow, kas tie pa eval brīnumiem skriptā. un iekš onclick nav jāraksta javascript: tas tāpat var būt tikai javascript.

Ja jau negribi izmantot <input type="radio">

<script type="text/javascript">
function kastuParbaude(cb) {
 var elementi = document.forma.elements;
 for (var j = 0, l = elementi.length; j < l; j++) {
   if (elementi[j].tagName.toLowerCase() === 'input' && elementi[j].type === 'checkbox') {
	elementi[j].checked = elementi[j] === cb;
}
 }
}
</script>
<form name="forma" action="">
Izvele 1<input type="checkbox" name="izvele_viena" onclick="kastuParbaude(this)"><br>
Izvele 2<input type="checkbox" name="izvele_otra" onclick="kastuParbaude(this)"><br>
Izvele 3<input type="checkbox" name="izvele_tresha" onclick="kastuParbaude(this)"><br>
</form>

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.

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.

Loading...
×
×
  • Create New...