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

Detailed explanation of the use of jQuery form beautification plug-in jqTransform_jquery

WBOY
Release: 2016-05-16 16:04:39
Original
1043 people have browsed it

jQuery Form beautification plug-in jqTransform is a very practical jQuery plug-in that automatically beautifies your entire Form, including SELECT drop-down boxes, text boxes, radio selections, check boxes, buttons, etc. Of course, input files are not supported. Selection box, this can be modified by referring to our previous input file selection box beautification tutorial. In terms of browser compatibility, it is compatible with IE 6, Safari 2, Firefox 2. The plug-in is still very good and easy to use. It is recommended to learn and use it. .

Usage:

1. Load jQuery and plug-ins

<script type="text/javascript" src="js/jquery.js"></script> 
<script type="text/javascript" src="js/jquery.jqtransform.min.js"></script> 
Copy after login

2.HTML content

<form class="jqtransform"> 
<div class="rowElem"> 
<label for="name">Name:</label> 
<input type="text" name="name"/> 
</div> 
<div class="rowElem"><input type="submit" value="send"/></div> 
</form> 
Copy after login

3. Function call

<script type="text/javascript"> 
$(function() { 
    $("form.jqtransform").jqTransform(); 
}); 
</script>
Copy after login

Plug-in download

The above is the entire content of this article, I hope you all like it.

Related labels:
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