构建 HTML 表单的更快方法
我需要一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将代码放置在页面中您希望其显示的任何位置。在您的样式中,输入:
.textcontainer { display: none; }
这允许它与页面的其余部分一起加载。然后,单击时,只需将显示设置为阻止即可。
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.