を使用して電話をかけることができます
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" />
<script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js" type="text/javascript"></script>
テーマの名前を変更することで、他の Ui テーマにリンクすることもできます。この場合、名前ベースを他のテーマ名/base/jquery-ui.css
に変更して、他のテーマに変更します。
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/themes/base/jquery-ui.css" type="text/css" media="all" />
すべての CDN リンクのリンクについては、jQuery UI ブログを参照してくださいhttp://blog.jqueryui.com/
Google CDN が失敗したりダウンしたりすることが懸念される場合は、CDN がオフラインのときにローカル コピーにフォールバックできます (この例は、HTML5 ボイラープレートのようなテンプレートに組み込まれています)。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"></script>')
</script>