美文网首页
JS 路上的小问题

JS 路上的小问题

作者: 史梦辰 | 来源:发表于2019-01-06 18:36 被阅读0次

1.图片加载问题

想得到图片的宽和高 img.width() img.height
一定要保证图片加载完成
使用load事件

onImg.on("load",function(){ //核心
                        var $this=$(this);
                        var w = $this.width();
                        var h = $this.height();
}

2.图片按父元素比例缩放

//图片缩放
function scalingImage(imgWidth, imgHeight, containerWidth, containerHeight) {
    var containerRatio = containerWidth / containerHeight;
    var imgRatio = imgWidth / imgHeight;

    if (imgRatio > containerRatio) {
        imgWidth = containerWidth;
        imgHeight = containerWidth / imgRatio;
    } else if (imgRatio < containerRatio) {
        imgHeight = containerHeight;
        imgWidth = containerHeight * imgRatio;
    } else {
        imgWidth = containerWidth;
        imgHeight = containerHeight;
    }

    return { width: imgWidth, height: imgHeight };
}

3.通过url传递数组的方法

其中values为数组


image.png

4.jquery属性选择器匹配动态变量

image.png

其中submitId为动态变量,方法就是'"+submitId+"'这样吧动态变量包裹起来。

4.safari浏览器下解决Date日期的NAN问题

image.png

写了一个如上这个时间友好展示功能,在chrome浏览器下正常,到了safari浏览器下就一直NAN,查了一下资料发现是因为safari浏览不能识别这种类型的字符串转换为时间戳
new Date("2016-05-31 08:00");
改成这种类型的字符串就可以了timeStr.replace(/-/g, "/");

相关文章

  • JS 路上的小问题

    1.图片加载问题 想得到图片的宽和高 img.width() img.height一定要保证图片加载完成使用loa...

  • js小问题

    1 js中typeof、instanceof与constructortypeof返回一个表达式的数据类型的字符串,...

  • js小问题

    今天看到一个js的问题,想了好久之后不得其解,到晚上才发现了问题所在,题目是这样的: 想必大家应该看到过这个题目,...

  • Nodejs中@elastic/elasticsearch的使用

    GitHub的地址:https://github.com/elastic/elasticsearch-js 小问题...

  • React 路上的小问题

    1.setState的异步更新和i++ 问题重现:想实现一个点赞按钮,点击一次赞增加一次,用likes变量来保存赞...

  • js常见小问题

    在循环中 加事件不能使用i 使用i的话会自动变成 最大的循环数 用索引 index 在script的里给需要的加上...

  • js继承遇到的小问题

    这两天在看js继承方面,它不像OC那种传统的类继承。js继承方式还是挺多的。比如:原型继承、原型冒充、复制继承 原...

  • angular.js中的小问题

    问题一: Supported by and elements. 也就是说ng-disabled只在这三...

  • Java导出excel

    首先是控制层Controller excel工具类 jsp js 这里出现一个小问题,location.href这...

  • node.js 安装小问题

    windows: 在官网https://nodejs.org/en/download/下载 安装完成之后,找到安装...

网友评论

      本文标题:JS 路上的小问题

      本文链接:https://www.haomeiwen.com/subject/shzsrqtx.html