Arkadaşlar ben çöyle birşey yapma istiyorum mesela 4 tane butonum var bunların adları 1 2 3 4 ben 1 e bastıgımda textboxta bir 2 ye bastıgımda textboxda biri silmeden 12 yazmasını istiyorum bunu nasıl yapabilirim Yardım edermisiniz
<script type="text/javascript" src="jquery.js"></script>
<script>
$(document).ready(function(){
$('input[type=button]').click(function(){
var div = $('#yaz');
div.html(div.html()+$(this).val())
})
})
</script>
</head>
<body>
<input type="button" value="1" />
<input type="button" value="2" />
<input type="button" value="3" />
<div id="yaz"></div>
HTML:<script type="text/javascript" src="jquery.js"></script> <script> $(document).ready(function(){ $('input[type=button]').click(function(){ var div = $('#yaz'); div.html(div.html()+$(this).val()) }) }) </script> </head> <body> <input type="button" value="1" /> <input type="button" value="2" /> <input type="button" value="3" /> <div id="yaz"></div>
şöyle bir örnek yaptım textbox olayınıda sen yapabilirsin...
http://jsbin.com/icayuh/edit#javascript,html,live
arkadaşın çalışması
<?php
if( isset($_POST['ekle']) ){
$a = @$_POST['ekle'];
$g = @$_GET['g'];
@$son = $g.$a[0];
echo $son;
}
?>
<form action="?g=<?php echo @$son ?>" method="post">
<input type="submit" name="ekle[]" value="1" />
<input type="submit" name="ekle[]" value="2" />
<input type="submit" name="ekle[]" value="3" />
</form>