Home > Web Front-end > JS Tutorial > JavaScript function that can realize multiple form submission_form special effects

JavaScript function that can realize multiple form submission_form special effects

WBOY
Release: 2016-05-16 19:10:50
Original
903 people have browsed it


<script> <BR>function submitForm(formId,action){ <BR> var form=document.getElementById(formId); <BR> form.action=action; <BR> form.submit(); <BR>} <BR></script> Just pass in the form ID and url~
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