URL http://localhost:8000/upload
$('button[name="postname"]').click(function(){
var img_route=$(".template").attr("href");
if(typeof img_route ==='undefined'|| img_route === null){
alert('Please upload image')
}else{
var checkresult=checktable();
if( checkresult == 1){
document.formpost.action="postNews";
document.formpost.method="post";
document.formpost.submit();
}
}
});
function checktable(){
if($(".table").val()==''){
return 0;
}else{
return 1;
}
}
вид лезвия
<form action="" method="" name="formpost" enctype="multipart/form-data" role="form" class="form-inline">
{{ csrf_field() }}
.......
<button type="button" name="postname" >Post News</button>
</form>
когда я нажимаю кнопку
нет ввода изображения
перейти к
if(typeof img_route ==='undefined'|| img_route === null)
или
checktable() return 0;
страница автоматически перезагрузится и
столбец URL
покажет
http://localhost:8000/upload?tablename=&img=&imgroute=&....
авто использовать метод get?