ボタンがあり、ポップアップでドロップダウンを選択しています。何らかの理由でボタンをドロップダウンの下に移動することはできません。Divにボタンを移動する方法
私はそれらを別のテーブル行に配置しようとしましたが、それは役に立たなかった。
は、ここであなたは、単にが欠落している<td></td>
$(".form").button();
$("#popup").dialog({
title: "Test",
modal: true
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
<div id="popup" style="overflow:scroll;">
<table>
<tr>
<td>
<select style="width:100px;">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
</select>
</td>
</tr>
<tr>
<td>
<input type="button" class="form" value="Save">
</td>
</tr>
</table>
</div>
あなたはhttps://jsfiddle.net/smo4sjbv/このように意味ですか? – Keith
テーブルをレイアウト目的で使用しないでください。それらは表形式のデータ用です。 – Scott
@Scottフォームで使うのはどうですか? –