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

需求:鼠标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            
            onm ouseOver={()=>setShow(true)}
            onm ouseOut={()=>setShow(false)}
            ><input type="checkbox" />两周内自动登陆</label>
            <div id="tips" className={isShow ? 'new' : ''}>为了您的信息安全,请不要在网吧或公用电脑上使用此功能!</div>
        </div>
    )
}



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

 

上一篇:React Hook 入门使用


下一篇:React练习 3 :函数接受参数并弹出