私はオーダーフォームを作成しています。私は新しいプログラミングです。顧客は新しい箱を追加して数量の新しい商品を注文することができます。このコードでは、製品を含むボックスを作成できますが、製品ボックスの横に数量ボックスを置くことはできませんでした。私は製品用のものと数量用のものを作成したいと思います。顧客が新製品をクリックすると、新しい製品リストと数量リストまたは数量フィールドを作成して値を入力します。 私は、document.createをコピーしてdivを変更しましたが、別の選択肢に移動する方法はわかりません。皆さんが助けてくれればと感謝します。ありがとうございました。入力タイプをJavascriptのオプションで選択してください。
はJavaScript
var choices = [
"Product1",
"Product2",
"Product3"];
function addInput(divName) {
var newDiv = document.createElement('div');
var selectHTML = "";
selectHTML="<select>";
for(i = 0; i < choices.length; i = i + 1) {
selectHTML += "<option value='" + choices[i] + "'>" + choices[i] + "</option>";}
selectHTML += "</select>";
newDiv.innerHTML = selectHTML;
document.getElementById(divName).appendChild(newDiv);
var Div = document.createElement('div');
var selectHTML = "";
selectHTML="<select>";
for(i = 0; i < choices.length; i = i + 1) {
selectHTML += "<option value='" + choices[i] + "'>" + choices[i] + "</option>";}
selectHTML += "</select>";
Div.innerHTML = selectHTML;
document.getElementById(divName).appendChild(Div);
HTML
<form class="new" method="post" action="phppage">
<fieldset id="products"> <legend> PRODUCTS </legend>
<select name="tProduct" id="cProduct">
<optgroup label="GALLON BAG">
<option>Product1</option>
<option>Product2</option>
<option>Product3</option>
</optgroup>
</select>
<label for="cQuantity">Quantity:<span style="color:red">*</span></label> <input type="number" name="tQuantity" id="cQuantity" placeholder="Qnt" min="0" max="9999" required/>
<div id="dynamicInput"></div>
<input type="button" value="New Product" onclick="addInput('dynamicInput');" />
私はこの方法を試みましたが、うまくいきませんでしたので、いくつか変更して完全に機能しました。私はあなたのアイデアを使用したので、ありがとうございました。これは私の問題を解決しました。 – Evandro
私はボタンのタグにイベントハンドラを置くと、動作しません。だから私はそれらをスクリプトに入れて、今ここでデモを試すことができます。あなたはjqueryを試してみるべきです、それは素晴らしいです。 –