随笔分类 - 前端
摘要:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>垂直滚动</tit
阅读全文
摘要:原因是https页面去发送http请求报错(浏览器阻止https发送http请求) 解决方法:页面中的http换成https
阅读全文
摘要://当你在iframe页面关闭自身时 var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引 parent.layer.close(index); //再执行关闭
阅读全文
摘要:如在弹框中获取父级勾选的id var checkedArr = []; parent.window.$('input.checkboxItem[type="checkbox"]:checked').each(function (index, elem) { checkedArr.push($(ele
阅读全文
摘要:一行超出 overflow:hidden; white-space:nowrap; text-overflow:ellipsis; 多行超出 overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-c
阅读全文