Home  >  Article  >  Web Front-end  >  JS button button implements submit button submission effect

JS button button implements submit button submission effect

高洛峰
高洛峰Original
2016-12-08 11:52:321869browse

When using the form today, I used POST update and delete operations at the same time. However, the submit form will be all submitted once it is submitted, so the implementation method that comes to mind is to use button implementation. The code implementation is as follows:

Form settings:

<form method=”post” name=”linkform”>

Hidden act method settings, the code is as follows:

<input name=”act” type=”hidden” />

The last key is the setting of the button, the update button, the code is as follows:

<input onclick=”document.linkform.act.value=&#39;update&#39;; document.linkform.submit();” name=”update” type=”button” value=”更新” />

Delete button, the code is as follows:

<input onclick=”if(confirm(‘你确定要删除数据吗?&#39;)){ document.linkform.act.value=&#39;delete&#39;; document.linkform.submit();return true;}return false; ” type=”button” value=”删除” />

The above is the JS that the editor introduces to you The button button implements the submit button submission effect


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn