今天小编跟大家讲解下有关HTML5和CSS3实例教程总结(推荐) ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关HTML5和CSS3实例教程总结(推荐) 的相关资料,希望小伙伴们看了有所帮助。
关于onclick的行为与内容分离
1.通过链接触发弹出窗口方式 (不推荐使用此方法!!!)
XML/HTML Code复制内容到剪贴板 <ahref='#' onclcik="window.open('holiday_pay.html',WinName,'width=300,height=300');"> HolidayPay </a>如果JS被禁用链接无法引导用户进入对应页面,不要为href属性赋"#"及类似的值
2.普通情况
XML/HTML Code复制内容到剪贴板 <ahref='holiday_pay.html' onclcik="window.open(this.href,WinName,'width=300,height=300');"> HolidayPay </a>3.0 大量重复链接 为每个链接分配可识别类名,通过使用jQuery为每个click事件分别添加监听器
XML/HTML Code复制内容到剪贴板 <ahref="holiday_pay"class="popup">Holidaypay</a> varlinks=$("a.popup"); links.clcik(function(event){ event.preventDefault(); window.open($(this).attr('href')); });3.1 通多自定义数据类型设置弹出窗口尺寸大小
XML/HTML Code复制内容到剪贴板 <ahref="holiday_pay.html" data-width="600" data-heigth="400" title="HolidayPay" class="popup">Holidaypay</a>Javascript Code复制内容到剪贴板 $(function(){ $(".popup").click(function(event){ event.preventDefault(); varhref=$(this).attr("href"); varwidth=$(this).attr("data-width"); varheight=$(this).attr("data-height"); varpopup=window.open(href,"popup","height="+height+",width="+width+""); }); });以上这篇HTML5和CSS3实例教程总结(推荐)就是小编分享给大家的全部内容了 希望能给大家一个参考 也希望大家多多支持爱蒂网。
原文地址:http://www.cnblogs.com/liul0703/p/5677644.html
来源:爱蒂网