0
値を選択すると、その選択に対応する表が表示されるHTMLドロップダウンリストがあります。 Addボタンもあります。 Addボタンの中には、2つの情報フィールドがあり、1つはドロップダウンボックスです。ここに私が必要としているが、理解できないものがある。追加ボタンのドロップダウンで選択した値を、最初のドロップダウンですでに選択されている数値にしたいとします。これどうやってするの?ここで別のHTMLドロップダウン選択に基づいてHTMLドロップダウンの値を設定する
は、私がこれまで持っているコードです:
<button class="ui-button ui-corner-all ui-widget" id="insertButton">Add Supplier ID</button><br><br>
<div id="dialog-form" title="Add Supplier ID">
<p class="validateTips">All form fields are required.</p>
<!-- Dialog box displayed after add row button is clicked -->
<form>
<fieldset>
<label for="mr_name">MR_ID</label>
<select name="mr_id" id="mr_id_dialog" class="text ui-widget-content ui-corner-all" value="300">
<?php foreach($user->fetchAll() as $user1) { ?>
<option>
<?php echo $user1['MR_ID'];?>
</option>
<?php } ?>
</select><br><br>
<label for="buyer_id">Supplier ID</label>
<input type="text" name="supp_id" id="supplier_id" class="text ui-widget-content ui-corner-all" value="99">
<!-- Allow form submission with keyboard without duplicating the dialog button -->
<input type="submit" id="submit" tabindex="-1" style="position:absolute; top:-1000px">
</fieldset>
</form>
</div>
<!-- Form -->
<form name="myForm" action="">
<!-- Dropdown List -->
<select name="master_dropdown" id="mr_id" onChange="updatetable(this.form);">
<option selected value="select">Choose a MR_ID</option>
<?php foreach($users->fetchAll() as $user) { ?>
<option data-name="<?php echo $user['MR_ID'];?>">
<?php echo $user['MR_ID'];?>
</option>
<?php } ?>
</select>
</form>
<!-- Table -->
<p>
<div id="table_div">
<table border="1" id="index_table" class="ui-widget ui-widget-content" style="display: none">
<thead>
<tr class="ui-widget-header">
<td>MR ID</td>
<td>Supplier ID</td>
</tr>
</thead>
<?php foreach($users_one->fetchAll() as $supp) { ?>
<tr>
<td class="mr_id"><div id="dropdown_selection"></div></td>
<td class="supp_id"><?php echo $supp['Supp_ID']?></td>
</tr>
<?php } ?>
</table>
</div>
を追加それでは、私のHTMLはその後のようになりますか? – Rataiczak24
mr_id selectからonChange属性を削除し、末尾のスクリプトタグにjavascriptを追加します。 – bobjoe
これは機能します!とにかく自分のためにそれを清潔に保つためにHTMLコードの代わりに私のJSにそれを入れますか? – Rataiczak24