これを編集して、フォームに配置されたときに画像を受け入れるようにするには、他のすべてのオプションがサーバーまたはデータベースにアップロードされていない画像だけで機能するようにします。
誰かが私が周りを見回して理解できるものが見つからないのを手伝ってくれませんか?誰かがこれに少しコードを追加する可能性がありますか?
前もって感謝します。
<script type="text/javascript">
jQuery(document).ready(function($) {
$("#Submit").click(function() {
var url = "../AdsCreate/CreateCar.php"; // the script where you handle the form input.
$.ajax({
type: "POST",
url: url,
data: $("#myForm").serialize(), // serializes the form's elements.
success: function(html){ $("#right").html(html); }
});
return false; // avoid to execute the actual submit of the form.
});
});
</script>