私はこれを半日以上続けていますが、何が欠けているのか理解できません。私は多くの異なる反復と私が見つけることができる他のすべての解決策を試しました。それは簡単なはずです。私はJQueryMobile1.2を使用しており、その依存関係は次のとおりです(注var counter = 2;
はコードの上で宣言されています:
$("#btn_addIngredient").click(function () {
if (counter > 10) {
alert("Please limit to 10 ingredients");
return false;
}
var newIngredientTextBox = $(document.createElement('div')).attr("id", 'div_ingredient' + counter);
newIngredientTextBox.after().html('<input type="text" name="ingredient' + counter +
'" id="ingredient' + counter + '" value="#' + counter + '" >');
newIngredientTextBox.appendTo("#allIngredientsDiv");
counter++;
}); //~ $("#btn_addIngredient")
そしてhtml:
<div id="IngredientsTextGroup" data-role="fieldcontain">
<fieldset id="IngredientsFieldset" data-role="controlgroup" data-mini="true">
<div id="allIngredientsDiv">
Ingredients
<div id="div_ingredient1">
<input id="ingredient1" value="#1" type="text">
</div>
<!-- *** Need to add <div_ingredient2, 3 ...> -->
</div>
<a id="btn_addIngredient" href="#" data-role="button" data-inline="true" data-icon="plus"
data-iconpos="left">
Add Ingredient
</a>
<div>