上記サイトの「jQuery UIを使ったダイアログ」を実装したいです。
HTML
1<!DOCTYPE html> 2<html lang="ja"> 3 4 <head> 5 <meta charset="UTF-8"> 6 <title>Document</title> 7 <script type="text/javascript" src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script> 8 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css" /> 9 </head> 10 11 <body> 12 <button id="open-sample-dialog">ダイアログを開く</button> 13 <div id="sample-dialog" title="サンプルダイアログ" style="display:none; height: 100px;"> 14 <p>ダイアログです</p> 15 </div> 16 </body> 17</html>
JavaScript
1$("#open-sample-dialog").on("click", function () { 2 $("#sample-dialog").dialog(); 3});
サンプル通りのはずなのですが、「ダイアログを開く」ボタンを押してもダイアログが開きません。
どこが間違っているのでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/10/03 08:26