1. 程式人生 > >EasyUI之搜索框searchbox

EasyUI之搜索框searchbox

nsh n2n -s ued 大神 art rtk cst jquer

1、實例背景

EasyUI中searchbox搜索框,輸入值後點擊搜索圖標,可以打印出值

2、實例源碼

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>EasyUI之搜索框searchbox</title>
		<link rel="stylesheet" href="../themes/black/easyui.css" />
		<link rel="stylesheet" href="../themes/icon.css"
/>
<link rel="stylesheet" href="../css/demo.css" /> <script type="text/javascript" src="../js/jquery.min.js" ></script> <script type="text/javascript" src="../js/jquery.easyui.min.js" ></script> <script> $(document).ready(function(){ $("#searchBtn").click(function
()
{ var search = $(‘#searchBox‘).searchbox(‘menu‘); console.dir(search); }); }); function doSearch(value){ alert(‘您輸入的值是: ‘ + value); }
</script> </head> <body> <div class="easyui-panel" style="width:100%;height:600px;padding:10px;"
>
<input id="searchBox" class="easyui-searchbox" data-options="prompt:‘請輸入值‘,searcher:doSearch" style="width:100%"> </div> <div> <button id="searchBtn">查詢</button> </div> </body> </html>

3、實例結果

(1)初始化

技術分享圖片

(2)點擊圖標

技術分享圖片再分享一下我老師大神的人工智能教程吧。零基礎!通俗易懂!風趣幽默!還帶黃段子!希望你也加入到我們人工智能的隊伍中來!https://blog.csdn.net/jiangjunshow

EasyUI之搜索框searchbox