uniapp搜索框

HTML块

<input type="text" placeholder="输入你要搜索的内容" class="inputs" confirm-type="search" @confirm="inputConfirm"
					@input="onKeyInput" placeholder-style='color:#a5c4c7'>
				<image src="../../static/images/search.png" mode="" @click="search"></image>

JS块

methods: {
			// 回车键确定
			inputConfirm(event) {
				// 确定之后跳转到哪里
				console.log(event.detail.value)
			},
			//边输入边触发 得到文本框的值
			onKeyInput(event) {
				// 把值赋给data中的变量
				console.log(event.target.value)
			},
			//点击搜索图标 跳转页面
			search() {
				// 获取data中的变量,跳转页面
			}
		}

搜索获取值,页面跳转

UniApp 是一个基于 Vue.js 的跨平台框架,用于快速构建多端应用,包括 Web、iOS、Android 和 H5。对于在 UniApp 中创建一个搜索框(Search Box),你可以使用 Vue 的组件化思想来构建。以下是一个简单的步骤和示例: 1. **创建 SearchBox 组件**: 在 Vue 项目中,你可以创建一个名为 `search-box.vue` 的文件,定义一个 Vue 组件。例如: ```html <template> <view class="search-box"> <input v-model="searchText" placeholder="请输入搜索内容" @input="handleInput" /> <button @click="submitSearch">搜索</button> </view> </template> <script> export default { data() { return { searchText: '', }; }, methods: { handleInput(e) { this.searchText = e.detail.value; }, submitSearch() { // 这里可以根据搜索文本执行相应的搜索操作 console.log('搜索关键词:', this.searchText); }, }, }; </script> <style scoped> .search-box { /* 样式自定义 */ } </style> ``` 2. **在父组件中使用**: 在父组件(如 App.vue 或者其他需要搜索框的页面)中导入并使用这个组件: ```html <template> <uni-page-router> <navigator :url="$route.path" component="searchPage"> <search-box ref="searchBox" /> </navigator> </uni-page-router> </template> <script> import SearchBox from '@/components/search-box.vue'; export default { components: { SearchBox, }, setup() { const searchBoxRef = ref(null); // 获取 SearchBox 组件的引用 return { searchBoxRef, }; }, onReady() { // 当页面加载完成时,可以监听搜索框的输入事件 searchBoxRef.value.handleInput = (e) => { console.log('搜索框输入:', e.detail.value); }; }, }; </script> ```
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值