私はjqueryでフォームを送信しようとしましたが、うまくいきません。コードをここに入れます。このコードでは、スクリプトをjqueryに入れ、HTMLコードを使用してこの単純なフォームを送信します。
Jクエリスクリプト
<script>
jQuery(document).ready(function() {
var data = jQuery('#form1').serialize();
jQuery.ajax({
data: data,
cache: false,
url: '<?php echo $PHP_SELF;?>',
type: 'POST',
async:false,
success: function()
{
jQuery("#okok").show();
};
});
});
</script>
HTML CODE
<div id="okok" style="display:none;"></div>
<form id="form1" name="form1" method="post" action="" onsubmit="return false;">
<p>
<input type="text" name="title" id="textfield" class="cp_input_asesor"/>
</p>
<input type="submit" name="button" class="cp_submit_asesor" value="Send" />
</p>
</form>
よろしくお願いします!!!