【发布时间】:2015-12-13 07:19:48
【问题描述】:
我有这个按钮
<div class="bigbox">
<input type="text" placeholder="bigboxinput">
<div class="smallbox">
<input type="text" placeholder="smallboxinput1">
<button class="addinput">Add another input</button>
</div>
</div>
<button class="addbigbox">Add another bigbox</button>
当我点击那个按钮时,我想使用 javascript 来提醒“你好”之类的东西
<script>
var n = $('.addmore').length + 1;
$('.addmore').click(function(){ //I dont know what to do here
alert('Hello');
</script>
【问题讨论】:
-
你能解释一下你想要实现的目标吗
-
我已经更新了上面的问题
-
据说每当我添加一个或多个(按钮)时我都有很多按钮,所以 n in class="addmore' + n + '" ..n 应该是 n=1, n=2, n =3 以此类推
-
你能说出你想要达到的目标吗?
标签: javascript php jquery html database