WeChat applet implements search box function

WeChat applet implements search box function

This article example shares the specific code for the WeChat applet to implement the search box function for your reference. The specific content is as follows

Effect:

wxml file:

<view class="search_input" >
        <navigator url="/pages/search/search" open-type="navigate" class="navigator">
       <text class="iconfont icon-guanbi"></text> Search</navigator>
</view>

The icon style needs to be imported into text, here we use iconfont
url is the page to be redirected

.search_input {
  height: 90rpx;
  background-color: #eb4450;
  padding: 10rpx;
} 
.search_input .navigator{
  background-color: #fff;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15rpx;
  color: #999;
  font-size: 32rpx;
}

In .js:

If the component references the global style, you need to add the following attributes

options:{
      addGlobalClass:true,
  },

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:
  • WeChat applet implements search box function and pitfalls
  • WeChat applet search box style and jump to the search page (applet search function)
  • WeChat mini program imitates Taobao's hot search words in the search box
  • WeChat applet search box component code example
  • WeChat applet implements top search box

<<:  What the website needs most is to improve the experience of the target user group

>>:  Web Design TabIndex Element

Recommend

Detailed explanation of Docker Volume permission management

Volume data volume is an important concept of Doc...

Vue2.x configures routing navigation guards to implement user login and exit

Table of contents Preface 1. Configure routing na...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

Master the CSS property display:flow-root declaration in one article

byzhangxinxu from https://www.zhangxinxu.com/word...

Several common methods for setting anchor positioning in HTML

There are several ways I know of to set anchor pos...

How to use partitioning to optimize MySQL data processing for billions of data

When MySQL queries tens of millions of data, most...

Centos8 bridge static IP configuration method in VMware virtual machine

1. Make sure the network connection method is bri...

Rsync+crontab regular synchronization backup under centos7

Recently, I want to regularly back up important i...

Tutorial on installing GreasyFork js script on mobile phone

Table of contents Preface 1. Iceraven Browser (Fi...

How to build a drag and drop plugin using vue custom directives

We all know the drag-and-drop feature of HTML5, w...

How to set password for mysql version 5.6 on mac

MySQL can be set when it is installed, but it see...