This article example shares the specific code for manually implementing an input box component for your reference. The specific content is as follows backgroundIn taro h5, I want to implement an input box with the following style: question:There is no component of this style in taro component and taro-ui component. Taro h5 does not support modifying the style of placeholder. I tried to implement an input component myself, which can define the style more flexibly. accomplishjs code import Taro, { Component } from '@tarojs/taro'; import { View } from '@tarojs/components'; import { AtIcon } from 'taro-ui'; import './index.scss'; /** * @description Manually implement an input box component* @param placeholder: String Customize the placeholder in the input box* @param onClickSearch: Function Get input content callback*/ class BaseInput extends Component { componentDidMount() { //Input box focus document.querySelector('.search').focus(); } handleSearch = () => { //Get the content of the input box const value = document.querySelector('.search').innerText; this.props.onClickSearch && this.props.onClickSearch(value); }; render() { const { placeholder = 'Please enter' } = this.props; return ( <View className="base_input"> <View className="my_search"> <AtIcon value="search" color="#999" className="search_icon" onClick={this.handleSearch} /> {/* contenteditable can control whether a div can be edited*/} <View className="search" contenteditable placeholder={placeholder} ></View> </View> </View> ); } } export default BaseInput; scss code .base_input { .my_search { box-sizing: border-box; width: 690px; height: 56px; line-height: 56px; border-radius: 28px; margin: 12px auto; background: #f8f8f8; display: flex; .search_icon { width: 30px; height: 30px; margin-left: 20px; margin-right: 18px; } .search { width: 560px; padding: 0px 18px; background: #f8f8f8; height: 56px; color: #999; font-size: 28px; font-weight: 400; &:empty::after { content: attr(placeholder); } } } } The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Method of realizing automated deployment based on Docker+Jenkins
>>: MySQL multi-table query detailed explanation
I started learning MySQL recently. The installati...
Table of contents Before transformation: After tr...
Table of contents The background is: What will ha...
This article shares the specific code of js to ac...
Some people use these three tags in a perverted wa...
The benefits of using MySQL master-slave replicat...
<br />When discussing with my friends, I men...
download: Step 1: Open the website (enter the off...
I have encountered many centering problems recent...
Introduction to Text Shadows In CSS , use the tex...
1: What is openssl? What is its function? What is...
There is a business that queries the 5 most recen...
one. Overview of IE8 Compatibility View <br /&...
How to make a simple web calculator using HTML, C...
Cell -- the content of the table Cell margin (tabl...