首页 > 代码库 > JQuery学习(4-1)

JQuery学习(4-1)


    设置表单控件,主要包括‘验证邮箱’,‘判断输入是否为空’,‘设置tabindex属性’

$(document).ready(function() {
	/* modal windows */
	$('a.modal').click(function() {
        var modalID = $(this).attr('rel'); // get the name of the modal
        
        /* fade in the modal window and add a close button to it */
        $('#' + modalID).fadeIn().prepend('<a href=http://www.mamicode.com/"#" class="close">Close');>
    任然有很多用法值得去学习

JQuery学习(4-1)