The code copy is as follows:
var i=0;
function addForm(){
i++;
var textExtra='<p><input type="text" name='+"addInput"+i+'/></p>';
$("#inforForm").append(textExtra);
}
The effect is to click to add a text box into the form, automatically name it, and be made too big by the nesting of single quotes and double quotes...