8

我想以“弹性”或“液体”方式(正确的术语是什么?)将一个文本框和一个按钮放置在彼此旁边,如下所示:

布局
(来源:ocactus.org

当放置在任意宽度的容器中(包括调整浏览器窗口大小)时,按钮应右对齐并占用所需的宽度,而文本框应使用剩余宽度。不幸的是,按钮的宽度不能在 CSS 中固定,因为它取决于标题(不同的操作、语言等)。

什么是跨浏览器的上述工作的好解决方案?

4

4 回答 4

8

我能够让它在一个表中工作(我知道,但它可以工作),它可以正确处理页面大小调整以及按钮的值更改:

<table class="elastic">
    <tr>
        <td><input class="textbox" type="text"></td>
        <td class="button"><input type="button" value="Test Button"></td>
    </tr>
</table>

可能有一个 <div> 替代样式用于样式。

编辑:我修改了我的示例以使用以下样式表:

.elastic { width:100%; }
.elastic .textbox { width: 100%; }
.elastic .button { width: 1%; }
于 2009-06-05T17:30:58.017 回答
0

如果没有看到一些代码,很难给出明确的答案,但下面的代码会将输入的大小调整为浏览器宽度的 50%,并带有旁边的按钮。

input {width:50%}

<input>
<button>save</button>
于 2009-06-05T17:33:08.013 回答
0

HTML:

<div class="widebox">
  <input type="text" value="" />
  <button>Button</button>
</div>

jQuery:

<script type="text/javascript">
$(document).ready(function(){
  var w = $(".widebox");
  $(".widebox input:text").css({ width: (w.width - (w.children("button:first").width + 20)) });
});
</script>

注意:确保在文档的 <head> 中包含 jQuery 库。为了速度,我建议使用由 Google 托管的:http: //ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js

于 2010-01-27T22:50:04.663 回答
0

这是我根据 NGJ Graphics 的回答编写的 jQuery 扩展。它考虑了多个按钮,例如确定/取消选项。

(function($) {
  $.fn.extend({
    widebox: function() {
      var el = $(this);
      var width = 0;
      el.children("button").each(function() {
        width += $(this).outerWidth( true );
      });
      el.children("input:text").css({ width: (el.width() - (width + 40)) });
    }
  });
})(jQuery);
于 2011-04-21T19:15:41.453 回答