构建 HTML 表单的更快方法

发布于 2024-11-24 09:49:05 字数 438 浏览 0 评论 0原文

我需要一个 HTML 表单,该表单是在用户单击空格按钮后在屏幕上的某个位置创建的。当然head部分还有一些CSS。构建 DOM 树有点慢,而且 document.write 并不是我尝试过的好决定。一些代码尝试如下:

$(document).keydown(function(e){
    if (e.keyCode == 32) { 
            $('<div class="textcontainer"><form><input type="text" name="q" class="text" autocomplete="off"><div id="log"></div></form></div>');
       return false;
    }
    }); 

I need a HTML form which is created at some place on the screen after the user clicks space button. Of course there is some CSS in the head section. Building the DOM tree is somekind slow and document.write isn't good decision as I tried. Some code attempt is as follows:

$(document).keydown(function(e){
    if (e.keyCode == 32) { 
            $('<div class="textcontainer"><form><input type="text" name="q" class="text" autocomplete="off"><div id="log"></div></form></div>');
       return false;
    }
    }); 

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

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

发布评论

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

评论(1

淡看悲欢离合 2024-12-01 09:49:05

将代码放置在页面中您希望其显示的任何位置。在您的样式中,输入:

.textcontainer { display: none; }

这允许它与页面的其余部分一起加载。然后,单击时,只需将显示设置为阻止即可。

$(document).keydown(function(e){
    if (e.keyCode == 32) { 
            $('.textcontainer').css('display','block');
       return false;
    }
    }); 

Place the code wherever you want it to show up in the page. in your styles, put this:

.textcontainer { display: none; }

This allows it to load with the rest of the page. Then, on click, simply set the display to block.

$(document).keydown(function(e){
    if (e.keyCode == 32) { 
            $('.textcontainer').css('display','block');
       return false;
    }
    }); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文