1、jquery.show.js
/** 开发者:lzugis* 开发时间:2014年6月10日* 实现功能:点击在鼠标位置显示p* 版本序号:1.0 */(function($){ $.fn.showDIV = function(options){var defaults = {};var options = $.extend(defaults, options);var showp=$(this);var close, title, content;close=$(" "); title=$(" "); content=$(" "); showp.html(""); showp.append(close); showp.append(title); showp.append(content); close.html("X"); title.html(options.title); content.html(options.content); showp.css("display","block"); showp.css("position","absolute"); showp.css("left",($(window).width()-options.width)/2+"px"); showp.css("top",($(window).height()-options.height)/2+"px"); showp.css("width",options.width); showp.css("height",options.height); close.bind("click",function(){ showp.css("display","none"); }); }; })(jQuery);
2、jquery.showp.css
body p{font-size:12px;text-align:center;}#container{background-color:#CCC;border:1px solid #000;width:1024px;height:600px;}#showp{background-color:#FF0;width:100px;height:100px;display:none;z-index:99;}.title{padding:10px;background:#F39;font-weight:bold;text-align:center;color:#FFF;}.close{margin:5px;position:absolute;right:0px;top::0px;padding:5px;color:#000;background:#FFF;}.close:hover{cursor:pointer;background:#CCC;}.content{text-align:left;padding:10px;}
3、demo.html
<script type="text/javascript" src="jquery/jquery.min.js?1.1.23">《script》<script type="text/javascript" src="jquery/jquery.showp.js?1.1.23">《script》<script type="text/javascript">$(document).ready(function (){ $('#show').bind("click", function(evt){var showp = $('#showp').showDIV({width:400,height:200,title:"我不是黄蓉",content:"我不是黄蓉
我不会武功
我只要靖哥哥
完美的爱情"}); });});《script》
以上所述是小编给大家介绍的jquery自定义插件开发之window的实现过程,希望对大家有所帮助!同时也非常感谢大家对脚本之家网站的支持!