JS button button implements submit button submission effect
Dec 08, 2016 am 11:52 AMWhen 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='update'; document.linkform.submit();” name=”update” type=”button” value=”更新” />
Delete button, the code is as follows:
<input onclick=”if(confirm(‘你确定要删除数据吗?')){ document.linkform.act.value='delete'; 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

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use JS and Baidu Maps to implement map pan function

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS

Recommended: Excellent JS open source face detection and recognition project

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts

How to create a stock candlestick chart using PHP and JS

How to use JS and Baidu Maps to implement map polygon drawing function

How to use JS and Baidu Map to implement map click event processing function

How to use JS and Baidu Maps to implement map heat map function
