首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    jquery当中mouseover和Mouseout 和mousemove的用法是什么?

    例 1.12(mouseoverMouseout$Document.html) <html> <head> <title>设置opacity</title> <style type="text/css"> </style> <script language="javascript" src="jquery.min.js"></script> <script language="javascript"> $(function(){     //设置透明度,兼容性很好     $("img").mouseover(function(){         $(this).css("opacity","0.6");     });     $("img").mouseout(function(){         $(this).css("opacity","1.0");     }); /*下面头两段程序在火狐下效果完全一样, 都能运行, (2在火狐下可以,3火狐不行。但ie下2不行,1,3两段在ie上  是一样的 ),这个例子最重要的是让我看到了$(document)和document的区别。但 jquery会更兼容 */         $(document).mousemove(function(event){           $("span").text(event.clientX + ", " + event.clientY);         });  //      document.οnmοusemοve=function(event){ //          $("span").text(event.clientX + ",, " + event.clientY); //    };          /*       document.οnmοusemοve=function(){           $("span").text(event.clientX + ",,, " + event.clientY);     };   */ });

    00

    <input type=”file” />浏览时只显示指定文件类型

    1.accept=”application/msexcel” 2.accept=”application/msword” 3.accept=”application/pdf” 4.accept=”application/poscript” 5.accept=”application/rtf” 6.accept=”application/x-zip-compressed” 7.accept=”audio/basic” 8.accept=”audio/x-aiff” 9.accept=”audio/x-mpeg” 10.accept=”audio/x-pn/realaudio” 11.accept=”audio/x-waw” 12.accept=”image/gif” 13.accept=”image/jpeg” 14.accept=”image/tiff” 15.accept=”image/x-ms-bmp” 16.accept=”image/x-photo-cd” 17.accept=”image/x-png” 18.accept=”image/x-portablebitmap” 19.accept=”image/x-portable-greymap” 20.accept=”image/x-portable-pixmap” 21.accept=”image/x-rgb” 22.accept=”text/html” 23.accept=”text/plain” 24.accept=”video/quicktime” 25.accept=”video/x-mpeg2″ 26.accept=”video/x-msvideo”

    03
    领券