我将如何编辑它,以便在输入表单时接受图像,所有其他选项仅适用于未上传到服务器或数据库的图像。
请有人可以帮助我环顾四周,找不到任何我能理解的东西,有人可以为此添加一些代码吗?
提前致谢。
<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>