码迷,mamicode.com
首页 > 其他好文 > 详细

React

时间:2020-03-23 11:10:31      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:console   str   highlight   component   export   extends   div   class   xtend   

事件对象: 

import React,{Component} from ‘react‘

class Index extends Component{
    constructor(props){
        super(props)
        this.state = {
            msg:‘张学友‘
        }
    }
    getMsg=(event)=>{
        alert(this.state.msg);
    event.target.value;//获取值
    console.log(event.target); //获取当前Dom节点 event.target.style.background = ‘red‘ ; //改变当前Dom的背景色
       console.log(event.target.getAttribute(‘aid‘)); //获取当前Dom属性 } setMsg=()=>{ this.setState({ msg:‘刘德华‘ }) } render(){ return( <div> {this.state.msg} <button aid=‘1111‘ onClick={this.getMsg}>点击获值</button> <br /> <button onClick={this.setMsg}>改变值</button> </div> ) } } export default Index

  

React

标签:console   str   highlight   component   export   extends   div   class   xtend   

原文地址:https://www.cnblogs.com/finnlee/p/12550884.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!