首页  >  文章  >  web前端  >  HTML5和CSS3实例教程总结(推荐)

HTML5和CSS3实例教程总结(推荐)

黄舟
黄舟原创
2017-02-20 13:33:371528浏览

关于onclick的行为与内容分离

1.通过链接触发弹出窗口方式 (不推荐使用此方法!!!)


<a href=&#39;#&#39;    

        onclcik = "window.open(&#39;holiday_pay.html&#39;,WinName,&#39;width=300, height = 300&#39;);">  

    Holiday Pay    

    </a>



如果JS被禁用链接无法引导用户进入对应页面,不要为href属性赋"#"及类似的值

2.普通情况

<a href=&#39;holiday_pay.html&#39;    

        onclcik = "window.open(this.href,WinName,&#39;width=300, height = 300&#39;);">  

    Holiday Pay    

    </a>



3.0  大量重复链接,为每个链接分配可识别类名,通过使用jQuery为每个click事件分别添加监听器

<a href="holiday_pay" class="popup">Holiday pay</a>  

      

    var links = $("a.popup");   

      

    links.clcik(function(event){   

       event.preventDefault();   

       window.open($(this).attr(&#39;href&#39;));      

    });



3.1  通多自定义数据类型设置弹出窗口尺寸大小

<a href ="holiday_pay.html"  

        data-width="600"  

        data-heigth = "400"  

        title = "Holiday Pay"  

        class = "popup"> Holiday pay </a>



$(function(){   

       $(".popup").click(function(event){   

           event.preventDefault();   

           var href=$(this).attr("href");   

           var width = $(this).attr("data-width");   

           var height = $(this).attr("data-height");   

           var popup = window.open(href,"popup","height="+height+",width="+width+"");   

    }) ;   

    });



以上这篇HTML5和CSS3实例教程总结(推荐)就是小编分享给大家的全部内容了,希望能给大家一个参考,更多相关内容请关注PHP中文网(www.php.cn)!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn