Jump to content
php.lv forumi
  • 0

no checkbox value uz hidden input


laucinieks

Question

Sveiki, kā var pievienot hidden inputam, fīču, ka tajā automātiski kā value tiks ievietots visi value dati no iechekotiem checkboxiem? Checkboxiem visi name ir vienādi, bet ir atšķirīgi value un id. Piemēram, man ir checkbox lists ar name 'check' un id 'check1', 'check2' u.t.t. tieši tādi paši ir value (kā id). Tātad ieķeksējot checkbox ar id check5, pie hidden inputa value vajadzētu parādīties check5 , ja ir ieķeksēti vairāki, piemēram check5, check8 un check1, tad pie hidden inputa value vajadzētu parādīties šādi - (check5, check8, check1) (bez iekavām).

Ceru uz palīdzību,

L.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

done ;)!

Ja nu gadījumā kādam ievajagas -

  	<script type="text/javascript">
   	function updateTextArea() {        
      	var allVals = [];
      	jQuery('#checkbox :checked').each(function() {
        	allVals.push(jQuery(this).val());
      	});
      	jQuery('#textarea').val(allVals)
   	}
  	jQuery(function() {
    	jQuery('#checkbox input').click(updateTextArea);
    	updateTextArea();
  	});
 	</script>

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...