工具提示wordwrap问题

时间:2016-08-03 06:55:59

标签: javascript html twitter-bootstrap

工具提示是wordwrapping,文本溢出到换行符。如何解决这个问题,我更喜欢用单行而不是多行显示文本?这里是 JSBin

<html>
<head>
<script src="http://code.jquery.com/jquery.min.js"></script>
<link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
<script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
<script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <script>
$(document).ready(function(){
    $('[data-toggle="tooltip"]').tooltip();
});
</script>
  <div class="form-group">
                <label class="col-xs-2 control-label">Name</label>
                <div class="col-xs-5">
                    <input type="text" class="form-control" name="name" data-toggle="tooltip" title="Lorem ipsum dolor" data-placement="right"/>
                </div>    
            </div>
</body>
</html>

2 个答案:

答案 0 :(得分:2)

应用css white-space: nowrap;来抑制字符串中的换行符。

.tooltip{
  white-space: nowrap;
}

&#13;
&#13;
.tooltip {
  white-space: nowrap !important;
}
&#13;
<html>

<head>
  <script src="http://code.jquery.com/jquery.min.js"></script>
  <link href="http://getbootstrap.com/dist/css/bootstrap.css" rel="stylesheet" type="text/css" />
  <script src="http://getbootstrap.com/dist/js/bootstrap.js"></script>
  <script src="http://twitter.github.com/bootstrap/assets/js/bootstrap-tooltip.js"></script>
  <meta charset=utf-8 />
  <title>JS Bin</title>
</head>

<body>
  <script>
    $(document).ready(function() {
      $('[data-toggle="tooltip"]').tooltip();
    });
  </script>
  <div class="form-group">
    <label class="col-xs-2 control-label">Name</label>
    <div class="col-xs-5">
      <input type="text" class="form-control" name="name" data-toggle="tooltip" title="Lorem ipsum dolor" data-placement="right" />
    </div>
  </div>
</body>

</html>
&#13;
&#13;
&#13;

答案 1 :(得分:0)

您的问题可能有不同的解决方案。一种可能的解决方案是稍微改变预定义的工具提示样式。

$(document).ready(function() {
  $('[data-toggle="tooltip"]').tooltip();
});
.tooltip.fade.right.in {
  position: fixed;
  /*width: 100%;*/
}
<script src="http://code.jquery.com/jquery.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>



<div class="form-group">
  <div class="row">
    <label class="col-xs-2 control-label">Name</label>
    <div class="col-xs-5">
      <input type="text" class="form-control" name="name" data-toggle="tooltip" title="Lorem ipsum dolor" data-placement="right" />
    </div>
  </div>
</div>