众所周知,javascript:void(0)
用于在简单的html中将操作设置为undefined。但我需要在Laravel刀片中使用相同的东西,如下所述:
{!! Form::open(array('url' => '#', 'class' => 'form-search', 'id'=>'search_form')) !!}
如何在上面的代码中将表单操作设置为javascript:void(0)
?我正在使用Laravel 5.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)