如何在Laravel中的表单操作中使用javascript:void(0)?

时间:2016-02-08 11:06:58

标签: javascript php laravel-5.1

众所周知,javascript:void(0)用于在简单的html中将操作设置为undefined。但我需要在Laravel刀片中使用相同的东西,如下所述:

{!! Form::open(array('url' => '#', 'class' => 'form-search', 'id'=>'search_form')) !!}

如何在上面的代码中将表单操作设置为javascript:void(0)?我正在使用Laravel 5.1。

1 个答案:

答案 0 :(得分:0)

{!! Form::open(array('url' => '#', 'class' => 'form-search','id'=>'search_form')) !!}  
<!-- Content -->
        <input type="submit" value="Submit" onclick="function()" >
</div>
{!! Form::close() !!}

并在函数()

javascript:void(0)