Js form submission

<form class="layui-form form-horizontal" action="{:url("admin/menu/add")}" method="post">
<input type="text" name="action" autocomplete="off" placeholder="" class="layui-input">
</form>
form = $(".form-horizontal");
target = form.get(0).action;//url input

form.attr ("action") ?


action is overwritten by name='action' 's input. Change the value of the name attribute to input

.
Menu