因此,当我单击添加按钮时,它会检查输入字段中是否有文本,然后为其创建一个 div,然后将 +1 添加到计数器。问题是计数器;它只会添加+1,然后再次单击时什么也不做。当我删除一个 div 时,它 -1 就好了。所以是的,不会超过 1 或 -1。
地点:
功能:
function validateForm()
{
var x=document.forms["forming"]["texting"].value;
if (x==null || x=="")
{
alert("Get it together! You need to have text in there!");
return false;
}
else
{
var clone = $('#theDiv')
.clone()
.attr('id','')
.show()
.append(
$('<div>').html(
$('#textI2').val()
).addClass('futureEditor')
);
$('#hold').append(clone)
var x = 0;
x += 1;
document.getElementById( "clicked" ).value = x;
return false;
}
}
点击链接:
<form id="forming" name="forming" onsubmit="return validateForm()" method="post">
柜台:
<p>You have <input id="clicked" size="3" onfocus="this.blur();" value="0" > Stuffs. </p>