首页 > 其他 > 详细

React练习 6 :记住密码提示框

时间:2019-11-09 23:52:36      阅读:171      评论:0      收藏:0      [点我收藏+]

需求:鼠标mouseoverj时显示提示框,mouseoutj地隐藏

import React,{useState,useEffect} from ‘react‘;
import ReactDOM from ‘react-dom‘;
import ‘./index.css‘;


function Tips(props){
    const [isShow,setShow]=useState(false);
    return(
        <div id="outer">
            <label            
            onMouseOver={()=>setShow(true)}
            onMouseOut={()=>setShow(false)}
            ><input type="checkbox" />两周内自动登陆</label>
            <div id="tips" className={isShow ? ‘new‘ : ‘‘}>为了您的信息安全,请不要在网吧或公用电脑上使用此功能!</div>
        </div>
    )
}



ReactDOM.render(
    <Tips/>,
    document.getElementById(‘root‘)
)

 

React练习 6 :记住密码提示框

原文:https://www.cnblogs.com/sx00xs/p/11828031.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!