我想要一个按钮,每次按下该按钮时Add another field
都会创建一个文本字段。<input type="text" name="pet">
我目前有这个代码:
<html>
<head>
<script>
function add_field()
{
document.write( '<input type="text" name="pet">' );
};
</script>
</head>
<body>
<form name="input" method="get">
Favourite pets:<br>
<input type="text" name="pet">
<button type="button" onclick="add_field()">Add another field</button><br>
<input type="submit" value="Submit"><br>
</form>
</body>
</html>
但是当我按下Add another field
按钮时,我只得到一个只有一个文本字段的页面,我所有的其他内容都消失了。如何在添加另一个文本字段的同时保留其他 html 内容?