zoukankan      html  css  js  c++  java
  • 日志输出 jquery扩展

     1 function log(msg){
     2     if (window["console"]){
     3         console.log(msg);
     4     }
     5 }
     6 log("123456789!");
     7 
     8 (function($){
     9     alert(window.navigator.userAgent.toLowerCase() + '	
    ' +$.browser.version);
    10     //alert($.browser.version);
    11 })(jQuery);
    12 
    13 
    14 
    15 (function($){
    16     $.bbox={
    17         win:function(o){
    18             o=$.extend({
    19             name:'skyer',
    20             age:20,
    21             sex:'man'
    22             },o||{});
    23             alert(o.name);
    24             alert(o.age);
    25         }
    26     }
    27 })(jQuery);
    28 
    29 $.bbox.win({age:28});
    30 
    31 
    32     $.fn.hoverClass = function (className) {
    33         var _self = this;
    34         _self.each(function (i) {
    35             _self.eq(i).mouseenter(function () {
    36                 $(this).addClass(className);
    37             });
    38             _self.eq(i).mouseleave(function () {
    39                 $(this).removeClass(className);
    40             });
    41         });
    42     return _self; 
    43     };
    44 
    45     $.fn.msg=function(txt){
    46         alert((txt || ""));
    47         return this
    48     }
    49     $("h1").msg("hello").css('color','#a00');
  • 相关阅读:
    HNOI 2006 BZOJ 1195 最短母串
    BZOJ 3029 守卫者的挑战
    Codeforces 401D Roman and Numbers
    ZJOI2010 数字计数
    BZOJ 3329 Xorequ
    Codeforces 235 C
    SPOJ 8222 Substrings
    BZOJ 1396 识别子串
    (模板)归并排序
    poj3122 Pie (二分)
  • 原文地址:https://www.cnblogs.com/hack0573/p/4090110.html
Copyright © 2011-2022 走看看