Home > Web Front-end > JS Tutorial > body text

JS button button implements submit button submission effect

高洛峰
Release: 2016-12-08 11:52:32
Original
1870 people have browsed it

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”>
Copy after login

Hidden act method settings, the code is as follows:

<input name=”act” type=”hidden” />
Copy after login

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=”更新” />
Copy after login

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=”删除” />
Copy after login

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


Related labels:
js
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!