zoukankan      html  css  js  c++  java
  • 需要注意的点

    在分析jQuery源码时,可以看到有这么个正则表达式:

       rmsPrefix = /^-ms-/

    由此引申的可以想到,在JS中使用类似 -webkit-margin-left 属性时,常常会转换成webkitMarginLeft驼峰命名。举例: $("#_id_name").css("webkitMarginLeft","10px");

    标准浏览器(webkit内核)会按照上面这么写。IE则会这么写:-ms-margin-left, $("#_id_name").css("MsMarginLeft","10px");

  • 相关阅读:
    Python字符串
    ListCtrl控件
    leetcode1004
    leetcode1003
    leetcode1002
    leetcode153
    leetcode540
    leetcode435
    leetcode999
    leetcode997
  • 原文地址:https://www.cnblogs.com/yiliweichinasoft/p/3771416.html
Copyright © 2011-2022 走看看