这段代码怎么改写成jquery

functioninputkey(key){varindex=key.charCodeAt(0);if((carry==2&&(index==48||index==49)... function inputkey(key)
{
var index=key.charCodeAt(0);
if ((carry==2 && (index==48 || index==49))
|| (carry==8 && index>=48 && index<=55)
|| (carry==10 && (index>=48 && index<=57 || index==46))
|| (carry==16 && ((index>=48 && index<=57) || (index>=97 && index<=102))))
if(endNumber)
{
endNumber=false
document.calc.display.value = key
}
else if(document.calc.display.value == null || document.calc.display.value == "0")
document.calc.display.value = key
else
document.calc.display.value += key
}
<INPUT onClick="inputkey('1')" style="COLOR: #1919CD; font-size:16px; line-height:24px;" type=button value=" 1 ">
展开
 我来答
yugi111
2014-12-22 · TA获得超过8.1万个赞
知道大有可为答主
回答量:5.1万
采纳率:70%
帮助的人:1.3亿
展开全部
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>main.html</title>
<style type="text/css">
</style>
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
<script type="text/javascript">
var carry = 2, endNumber = true, index = 48;
    jQuery (function ($)
    {
     var form = $('form[name="calc"]'), 
     fb = form.children (':button'), 
     ft = form.children(':text[name="display"]');
    
     fb.click ( fb.val(), function (e)
     {
     var key = e.data;
     var index = key.charCodeAt (0);
         if (
          (carry == 2 && (index == 48 || index == 49)) 
          || (carry == 8 && index >= 48 && index <= 55)
                 || (carry == 10 && (index >= 48 && index <= 57 || index == 46))
                 || (carry == 16 && ((index >= 48 && index <= 57) || (index >= 97 && index <= 102)))
            )
         {
          if (endNumber)
         {
         endNumber = false;
         ft.val (key);
         }
         else if (!ft.val ())
         {
          ft.val (key);
         }
         else
         {
          ft.val (ft.val () + key);
         }
         }
     });
    });
</script>
</head>
<body>
<form name="calc">
<input type="text" name="display" /> 
<input 
style="color: #1919CD; width:90px; height: 35px; font-size: 16px;" 
type=button
value="1" />
</form>
</body>
</html>
追问
function (e)这个E从哪儿进去的啊
百度网友b907c5233
2014-12-21 · TA获得超过534个赞
知道小有建树答主
回答量:263
采纳率:0%
帮助的人:234万
展开全部
代码根本就不全……
追问
全的太多了啊,我发不上来啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
寻梦生
2014-12-22 · TA获得超过179个赞
知道小有建树答主
回答量:581
采纳率:50%
帮助的人:453万
展开全部
你这代码有必要改成jquery吗。。。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式