Şu anda ben kod şu var:
home.php
<form name='myformname' id='myformid'>
<input type='text' name='mytext1' value='abc'>
<input type='text' name='mytext2' value='123'>
<input type='submit' value='Submit'>
</form>
<div id='textone'></div><div id='texttwo'></div>
_home.php
$arr = array( 'textone' => $_POST['mytext1'], 'texttwo' => $_POST['mytext2'] );
echo json_encode( $arr );
ajax.js
jQuery('#myformid').live('submit',function(event) {
$.ajax({
url: '_home.php',
type: 'POST',
data: $('#myformid').serialize(),
success: function( data ) {
// TODO: write code here to get json data and load DIVs instead of alert
alert(data);
}
});
return false;
});
Output on submit:
{"textone":"abc","texttwo":"123"}
Question
Ben mytext1 değerini yüklemek istiyorum textone DIV ve mytext2 değer _home.php json verileri kullanarak texttwo SAYI
Hint: I this answer linki tıklayın olay aynı görevi yapmak için kullanıyorum. Ama form gönderildiğinde bunu nasıl?
Teşekkürler