我很好地提交聯繫表。一切工作正常,但是當我提交從我想清除所有字段的詳細信息。輸入不刷新。當我提交聯繫表格我想從字段中清除?
我的javascript
$(document).ready(function(){
$('#buttonme').click(function(){
$.post("send.php", $("#myform").serialize(), function(response) {
$('#contactstatus').html(response);
//$('#success').hide('slow');
});
return false;
});
});
我如何可以刷新輸入什麼,我必須在MyScript可添加
'document.getElementById('myform')。reset();' – adeneo