Todos案例(二)01-添加任务——回车事件-回车键的数字标识是13 & e.keyCode === 13 & 自带光标定位-autoFocus

添加任务——回车事件-回车键的数字标识是13 & e.keyCode === 13 & 自带光标定位-autoFocus

  • 监听回车事件
<input ref={this.titleRef} onKeyUp={this.handleKeyup} value={etitle} onChange={this.handleEtitle} className="new-todo" placeholder="你想做什么?" />
  • 处理添加业务
handleKeyup = (e) => {
  // 回车键的数字标识是13
  if (e.keyCode === 13) {
    // 按了回车键:添加任务
    let ids = this.state.todos.map(item => {
      return item.id
    })
    let maxId = Math.max.apply(null, ids) + 1
    let todo = {
      id: maxId,
      etitle: this.state.etitle,
      done: false
    }
    // let todos = [...this.state.todos]
    // todos.push(todo)
    this.setState({
      todos: [...this.state.todos, todo],
      etitle: ''
    })
  }
}
  • 自己实现光标定位

1、自带光标-autoFocus

<input value="" placeholder="请输入" autoFocus />

2、自己实现

// 构造函数     this.titleRef = React.createRef()
class Todos extends React.Component {
  constructor (props) {
    super(props)
    this.titleRef = React.createRef()
  }
}
// 标签中
<input ref={this.titleRef} />
// 生命周期
  componentDidMount () {
    // 自己实现光标定位,也可以使用标准的autoFocus属性实现
    this.titleRef.current.focus()
  }

光标效果

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值