在我的网络应用程序中,我有一行看起来像这样:
small textbox large textbox select list
我有一个布尔方法。如果它返回false,我需要让上面的行看起来像这样:
small textbox select list
large textbox
基本上,我需要在大文本框中添加第二行。
怎么做?
以下是一些代码:
<div>
<input style="width:25px; top:0px; left:0px; margin:0px; background:white;" type="text" />
<input style="width:100%; top:0px; left:150px; margin:0px; background:white; float:left;" />
<select style="width:60px;">
<option value="0">a</option>
<option value="1">b</option>
</select>
</div>