如何使用带有不同网址的ajax post值提交嵌套表单

时间:2016-11-21 07:38:31

标签: php jquery ajax

我有两个表单,即我使用在laravel中创建的嵌套表单。我想仅提交嵌套表单。如何提交嵌套表单以及如何使用带有不同URl的ajax发送此表单的post值。这是每个将提交单独的url.I有像

的形式
{{ Form::model($property, array('url' => array('sampleurl'), 'class' => 'form-inline', 'id' => 'mainForm')) }} 
{{ Form::model($property, array('url' => array('sampleurltwo'), 'class' => 'form-inline', 'id' => 'enquiryForm')) }} 
{{ Form::select('country', array('' => '--Select--','india' => 'india','US' => 'US','singapore' => 'singapore','malesia' => 'malesia'), '', array('class' => 'textarea_field', 'required' => 'required')) }}
{{ Form::text('mobile', null, array('placeholder' => 'mobile', 'class' => 'text_field', 'required' => 'required')) }}   
{{ Form::Submit('Connect Now',array('class' => 'connect connectNowButton', 'id' => 'connect', 'onclick' => 'sendVal()'))}}                    
{{ Form::close() }}
{{ Form::close() }}

以下是我想提交的帖子值。

0 个答案:

没有答案