JavaScript 虚拟键盘

发布于 2024-12-03 11:40:49 字数 173 浏览 0 评论 0原文

我正在尝试使用 JavaScript 制作一个虚拟键盘。当我要单击按键时,会创建一个 div 但文本不是来自按键按钮。

alert(targ.childNodes[0].textContent); 的帮助下,我可以显示警报上的字符,但如何将其插入 div 中?

I am trying to make a virtual keyboard using JavaScript. When I am going to click on the key, a div is created but the text is not coming from the keybutton.

With the help of alert(targ.childNodes[0].textContent); I am able to show the characters on the alert, but how to insert it into the div?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

oО清风挽发oО 2024-12-10 11:40:49

如果您想将字符串附加到属性中,则 onclick 函数会获取该字符串并将该字符串添加到密码属性中。

function getCharText(text){

    if(capsEnable == 1)
        text = text.toUpperCase();      
    var textString= "";
    var textValue = document.forms[0].password.value;
    if(textValue != '')
            textString = textValue;
    if(document.forms[0].enableKeyboard.checked == true){       
        if(text == "bs" || text == "BS")    
            textString = textString.substring(0, textString.length-1);  
        else if(text == "ca" || text == "CA")   
            textString = "";
        else if(text == "sl" || text == "SL")   
            textString = textString + "\\";
        else if(text == "dq" || text == "DQ")   
            textString = textString + "\"";
        else if(text == "sq" || text == "SQ")   
            textString = textString + "\'";     
        else    
            textString = textString + text ;
    }
    var pwd = document.forms[0].password.value;
    var pwdlen = pwd.length;
    if(pwdlen<15)
    {
        document.forms[0].password.value = textString;
    }
}

试试这个,让我们知道结果......

If you want to append the String ina property means, onclick function get the string and add that string to password property.

function getCharText(text){

    if(capsEnable == 1)
        text = text.toUpperCase();      
    var textString= "";
    var textValue = document.forms[0].password.value;
    if(textValue != '')
            textString = textValue;
    if(document.forms[0].enableKeyboard.checked == true){       
        if(text == "bs" || text == "BS")    
            textString = textString.substring(0, textString.length-1);  
        else if(text == "ca" || text == "CA")   
            textString = "";
        else if(text == "sl" || text == "SL")   
            textString = textString + "\\";
        else if(text == "dq" || text == "DQ")   
            textString = textString + "\"";
        else if(text == "sq" || text == "SQ")   
            textString = textString + "\'";     
        else    
            textString = textString + text ;
    }
    var pwd = document.forms[0].password.value;
    var pwdlen = pwd.length;
    if(pwdlen<15)
    {
        document.forms[0].password.value = textString;
    }
}

Try this one and let us know the result ...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文