不久前才整理 jQuery UI, 今日連上官網, 發現又從 1.10.1 升到 1.10.2, 異動詳見 Change log, 主要是取消了 base 這個佈景, 修改了一些 bug. 所以在 CDN 上不能再使用 base 主題了. 不過搭配的 jQuery 仍然是最新的 1.9.1 版.
從 Google CDN 匯入 : (實際範例)
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI 測試</title>
<link type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/themes/smoothness/jquery-ui.css" rel="stylesheet">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
</head>
<body>
<input type="text" size="20" name="date" id="date" />
<script language="JavaScript">
$('#date').datepicker();
</script>
</body>
</html>
從 jQuery UI CDN 匯入 : (實際範例)
<!DOCTYPE html>
<html>
<head>
<title>jQuery UI 測試</title>
<link type="text/css" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" rel="stylesheet">
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.2/jquery-ui.min.js"></script>
</head>
<body>
<input type="text" size="20" name="date" id="date" />
<script language="JavaScript">
$('#date').datepicker();
</script>
</body>
</html>
沒有留言 :
張貼留言