如何将一个函数应用于许多文本框? [英] how to apply one function to many textboxes?

查看:71
本文介绍了如何将一个函数应用于许多文本框?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不擅长jquery。我得到了一个虚拟键盘jquery。点击文本框虚拟键板出现但我想要另一个文本框也不知道如何修改它可以任何人帮助我....代码如下



 <   script     type   =  text / javascript >  
$(document) .ready(function(){
$('#txtkeyboard')。键盘({
autoAccept:true
})

< / script >



是我的文本框的id

解决方案

(document).ready(function() {

( '#txtkeyboard')。键board({
autoAccept:true
})

< / script >




上面的txtkeyboard中的
是我的文本框的id


为你的所有texbox添加一个属性

 class =virtualKeyboard

,然后改变你的jQuery脚本这个:



 <   script     type   =  text / javascript >  


Hi,,I am not good at jquery.I got a jquery for virtual key board.On clicking textbox the virtual key board appers but I want tat to another textbox also I dont know how to modify it can any one help me....The code is below

<script type="text/javascript">
$(document).ready(function () {
$('#txtkeyboard').keyboard({
autoAccept:true
})

    </script>



in the above txtkeyboard is the id of my textbox

解决方案

(document).ready(function () {


('#txtkeyboard').keyboard({ autoAccept:true }) </script>



in the above txtkeyboard is the id of my textbox


add an attribute

class="virtualKeyboard"

to all your texboxes and then change your jQuery script like this:

<script type="text/javascript">


这篇关于如何将一个函数应用于许多文本框?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆