1

私は次のようにjQuery cssとjQueryを使用しています:

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>

私はこのようなダイアログボックスを使用しています:

<div id="dialog-confirm-share" title="Genalytics" style="display:none;">
  <p><span class="ui-icon ui-icon-alert" style="float: left; margin: 0 7px 20px 0;"></span>File you selected has been already shared with that user.</p>
</div>

単語は、次のようにダイアログ ボックスで分割されます。

File you selected has been already sha
red with that user.

私は言葉を分割したくないですか?どうすればこれを修正できますか?

4

1 に答える 1

0

ダイアログを好きなようにカスタマイズすることもできます。 DEMO http://jsfiddle.net/yeyene/GnpQ8/6/

$(document).ready(function(){
    $("#dialog-confirm-share").dialog({
        width: 250,
        height: 120,       
        modal: true,
        resizable: false
    });
}); 

そしてこれらのcssを追加し、

#dialog-confirm-share p{
    word-break:keep-all;
    word-wrap:normal;
    white-space:normal;
} 
于 2013-07-05T06:14:01.907 に答える