好的,所以我想在用户单击时创建变量,每次单击都会添加一个新变量。我目前正在使用 jquery 和 javascript 我不能在服务器端这样做,这必须在浏览器中完成。
newCount = document.getElementById('hello').innerHTML;
$('.hello').click(function(){
//set count fast enumeration
newCount++;
var hello + newCount = '<p>Hello World</p>';
});
所以我希望变量是 hello1、hello2、hello3、hello4 等。