我点击按钮时需要一个表单

时间:2016-02-24 16:11:38

标签: javascript html button

这是我在HTML文件正文中创建的按钮:

<button type="button" value ="Add Child" onclick="addChild();">

当我点击这个按钮时,我需要它来追加身体并添加一个表格。我发现的一些解决方案表明我必须在体内创建一个表单元素才能开始。但是我不希望表单出现,直到我点击这个按钮,我似乎无法知道在javascript函数中写什么。

2 个答案:

答案 0 :(得分:1)

HTML:

ValueError: Cannot shift with no freq

JavaScript的:

<button onclick="showForm()">Show the form</button>
<form id="formElement" style="display: none;">
 ...
</form>

答案 1 :(得分:0)

听起来你并不希望表单出现,但它在HTML中的存在不会有问题。

因此,请在页面上设计表单,然后在CSS中将display: none;添加到表单中。

然后使用Javascript,您可以更改显示。

在此示例中,我们为表单提供了ID&#39; form1&#39; ...

HTML:

<button type="button" value ="Add Child" onclick="addChild();">
<form id="form1">...</form>

CSS:

#form1 {
  display: none;
}

使用Javascript:

function addChild() {
  document.getElementById('form1').style.display = 'block';
}