jquery多功能軟鍵盤插件


功能介紹:支持查詢功能的鍵盤和簡單得軟鍵盤,鍵盤樣式完全在獨立的css文件中定義,可以自行美化。

 

 源代碼:http://files.cnblogs.com/mz121star/jquery-softkeyboard-js.rar

 

image

(支持從查詢的軟鍵盤)

image

(簡單的軟件盤)

 

插件的默認參數

插件的參數

插件的使用方法

使用方法   

 

<link href="softkeyboard.css" rel="stylesheet" type="text/css" />
<script src="jquery-1.6.2.js" type="text/javascript"></script>
<script src="jquery.softkeyboard.js" type="text/javascript"></script>

 

在頁面中加入一個文本框使用方法2

 

 

<input type="text" class="querytxt" />

 

為class為querytxt的文本框使用插件

 

<script type="text/javascript">
$(".querytxt").softkeyboard()
</script>

 

更改相關參數

 

 $(".querytxt").softkeyboard({
simplekeyboard:  true,
listmultiple:  true,
maxlength: 10,
onkeydown:  function (d) { alert(d) },
requestdataurl: "GetData.ashx",
onlykeyboard:  true
})

其中GetData.ashx返回的json數據格式類似如下

 

[{code:"DL",name:"大連"},{code:"DT",name:"大同"},{code:"DL",name:"大理"}] 

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM