Aklımdaki şöyle inputa ben bir name veya id'ye armut diye değer gireceğim ve kullanıcı o checkbox'u onayladığı zaman seçtiğim input'a o değer otomatik girecek.
Şöyle örneklendireyim
Bunu nasıl sağlayabilirim ?
Checkbox'a girinlen değeri inputa işleme? |
14 Mesajlar | 2.583 Okunma |
www.bilisimogretmeni.com
<script>
function ekranayaz()
{
document.secim.degisken.value="";
for (i=0;i {
if (document.secim.hobi[i].checked)
{//www.bilisimogretmeni.com
document.secim.degisken.value += document.secim.hobi[i].value + ", ";
}
}
}
</script>
<script></script>
<script>
$(document).ready(function () {
$('#btnSubmit').click(function () {
var result = $('input[type="checkbox"]:checked')
if (result.length > 0) {
var resultString = result.length + ""
result.each(function () {
resultString= $(this).val() + "";
});
$('#Result').val(resultString);
}
else {
$('#Result').val("seçim yapılmadı");
}
});
});
</script>
$yazi = "abcdefghijklmnopqrstu";
?>
<script>
function myFunction() {
var coffee = document.forms[0];
var txt = "";
var i;
for (i = 0; i < coffee.length; i++) {
if (coffee[i].checked) {
txt = txt + coffee[i].value + "";
}
}
document.getElementById("order").value = txt;
}
</script>