Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jqdialog確認ボックスにタイトルを追加するにはどうすればよいですか?中央に表示する必要のあるメッセージがあり、タイトルを上に表示する必要があります。現在、デフォルトのタイトルなしでメッセージが一番上に表示されています。
ダイアログを含むdivのtitle属性にタイトルを追加できます
<div class="demo"> <div id="dialog-modal" title="Whatever you title is...."> <p>Blah blah blah</p> </div> </div> $(document).ready(function() { $("#dialog-modal").dialog({ height: 140, modal: true }); });
ここの例