摘要: div默认无法聚焦,所以不能触发keyUp事件。 1. 为其添加tabIndex,可以使其能聚焦。 $('div').attr('tabIndex',0); $('div').focus(); 2. 此外,div如果包含a链接,也能聚焦。 <div> <a href='#'>必须有内容</a> </ 阅读全文
posted @ 2020-03-26 15:30 全玉 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 参数 触发时机 更新方式 componentWillReceiveProps componentWillReceiveProps(nextProps) 只有一个参数nextProps,下一次的props 收到新的props之前做一些事情 仅在props变化时会触发 更新状态是同步的, 不触发重新re 阅读全文
posted @ 2020-03-26 14:45 全玉 阅读(7988) 评论(0) 推荐(0) 编辑