首页 > 代码库 > JQuery学习一

JQuery学习一

    

    学习JQuery,如何创建、调用和关闭模式窗口。

(document).ready(function() {
	/* Background Resizer-背景自适应浏览器大小 */
	$("#bodyBackground").ezBgResize();
	
	/* modal windows */
	$('a.modal').click(function() {
		/*attr-获取属性值,例如tagName*/
        var modalID = $(this).attr('rel'); // get the name of the modal
        
        /* fade in the modal window and add a close button to it */
		/*
		*fadeIn-淡入已隐藏的元素
		*prepend-在被选元素的开头插入内容
		*/
        $('#' + modalID).fadeIn().prepend('<a href=http://www.mamicode.com/"#" class="close">Close');>

JQuery学习一