gpt4 book ai didi

javascript - jquery附加按钮单击显示文本然后消失

转载 作者:行者123 更新时间:2023-11-28 08:10:16 24 4
gpt4 key购买 nike

嗨,我对 jquery 比较陌生,并且遇到了一些困难。过去几个小时我一直在研究这个问题。

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>

</head>
<body>

<form id = "params">
Type: <input id = "type" type = "text">
Parameters:<input type = "text">
Required: <input type = "checkbox" >
<button id = "addpa">Add Parameter</button>
<script>
$("#addpa").click(function() {
$("#params").append("Parameters:<input type = \"text\"><br>Required: <input type = \"checkbox\" >");
});
</script>

</form>
</body>
</html>

我想要做的是让用户命名他们正在创建的项目的类型。之后他们可以输入参数列表。由于每个“类型”都有不同数量的参数,我希望他们能够单击按钮并有机会添加一组新的输入。当我单击按钮时,输入显示然后消失......

最佳答案

你差点就明白了。只需将按钮和脚本标签从表单中取出,然后将它们放在底部,如下所示:

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>

</head>
<body>

<form id = "params">
Type: <input id = "type" type = "text">
Parameters:<input type = "text">
Required: <input type = "checkbox" >
</form>
<button id = "addpa">Add Parameter</button>
<script>
$("#addpa").click(function() {
$("#params").append("Parameters:<input type = \"text\"><br>Required: <input type = \"checkbox\" >");
});
</script>


</body>
</html>

关于javascript - jquery附加按钮单击显示文本然后消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24295922/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com