上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 38 下一页
摘要: file:///Users/z/Library/Caches/Google/Chrome/Default/Cache/ 阅读全文
posted @ 2020-03-15 11:03 野生野鸡码农 阅读(1264) 评论(0) 推荐(0) 编辑
摘要: 在React项目中出现这个红色warning: Warning: react-modal: App element is not defined. Please use `Modal.setAppElement(el)` or set `appElement={el}`. This is neede 阅读全文
posted @ 2020-03-14 18:13 野生野鸡码农 阅读(627) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-03-14 12:05 野生野鸡码农 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 转自:https://www.cnblogs.com/feng3037/p/11150833.html 原先错误的写法: onClick={that.某方法(某参数)} 正确写法: onClick={() => this.某方法(某参数)} // 或者 onClick={this.某方法.bind( 阅读全文
posted @ 2020-03-04 18:14 野生野鸡码农 阅读(338) 评论(0) 推荐(0) 编辑
摘要: //父层级设置显示样式 document.getElementById("maskDiv").style.display = 'block'; //子节点设置样式var mask = document.createElement('div'); mask.id = 'maskDiv'; mask.s 阅读全文
posted @ 2020-03-04 14:07 野生野鸡码农 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: 在组件的render函数中遍历数组menus[]并且要return返回虚拟Dom对象。 render() { return createPortal( this.state.visible && <div className={styles.modal}> <div className={style 阅读全文
posted @ 2020-02-28 10:45 野生野鸡码农 阅读(1346) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-02-28 01:20 野生野鸡码农 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-02-28 01:16 野生野鸡码农 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 下面代码是组件源码: import React, {Component} from 'react' import {createPortal} from 'react-dom' import styles from './modal.css' export default class Modal e 阅读全文
posted @ 2020-02-27 23:36 野生野鸡码农 阅读(1333) 评论(0) 推荐(0) 编辑
摘要: 下面样式设置到父div上: .modal { display: flex; align-items: center; /*竖直居中 垂直居中*/ justify-content: center; /*水平居中*/ } 阅读全文
posted @ 2020-02-27 23:30 野生野鸡码农 阅读(348) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 38 下一页