MUI 语音搜索框

Posted RAINHAN

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MUI 语音搜索框相关的知识,希望对你有一定的参考价值。

<div id="search-area">
<div class="mui-input-row mui-search mui-active" style="width: 85vw; display: inline-block;margin-left: 5px;">
<input id="search" type="search" class="mui-input-speech mui-input-clear" placeholder="" data-input-clear="2" data-input-speech="2" data-input-search="2">
<span class="mui-icon mui-icon-clear mui-hidden"></span>
<span class="mui-icon mui-icon-speech"></span>
<span class="mui-placeholder">
<span class="mui-icon mui-icon-search" id="search-btn"></span>
<span>带语音输入的搜索框</span>
</span>
</div>
<div id="search-text">搜索</div>
</div>

  

	//	语音输入
	var text = null;

	function startRecognize() {
		var options = {};
		options.engine = \'iFly\';
		options.punctuation = false; // 是否需要标点符号 
		text = "";
		console.log("开始语音识别:");
		plus.speech.startRecognize(options, function(s) {
			console.log(s);
			text += s;
			document.getElementById(\'search\').value = text;
		}, function(e) {
			console.log("语音识别失败:" + e.message);
			alert("语音识别失败:" + e.message);
		});
		setTimeout(stopRecognize, 10000);
	}
//	停止语音输入
	function stopRecognize() {
		plus.speech.stopRecognize();
	}

  

 

以上是关于MUI 语音搜索框的主要内容,如果未能解决你的问题,请参考以下文章

mui搜索框 搜索点击事件

MUI搜索框及其事件调用【动态索引列表实现】

android leanback 搜索片段

MUI框架之输入框Input

mui的input框在IOS系统下无法聚焦或点击多次才能聚焦

JS,JQ及时监听input值的变化,MUI的input搜索框里的清除按钮的点击监听事件