묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
autocomplete 자동완성형 만들기.. ㅠㅠ
2013.05.13 11:39
- <!doctype html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>jQuery UI Autocomplete - Default functionality</title>
- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />
- <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
- <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
- <script>
- $(function() {
- var availableTags = [
- "ActionScript",
- "AppleScript",
- "Asp",
- "BASIC",
- "C",
- "C++",
- "Clojure",
- "COBOL",
- "ColdFusion",
- "Erlang",
- "Fortran",
- "Groovy",
- "Haskell",
- "Java",
- "JavaScript",
- "Lisp",
- "Perl",
- "PHP",
- "Python",
- "Ruby",
- "Scala",
- "Scheme"
- ];
- $( "#tags" ).autocomplete({
- source: availableTags
- });
- });
- </script>
- </head>
- <body>
- <div class="ui-widget">
- <label for="tags">Tags: </label>
- <input id="tags" />
- </div>
- </body>
- </html>외부페이지에서는 해당 소스가 잘되는데요...'레이아웃상에 두니깐... 스크립트가 로딩이 안되는지 잘안되네요 ㅠ 문제가 무엇일까요..
댓글 2
-
푸시아
2013.05.13 12:02
-
KTK
2013.05.13 13:07
$처리가 무엇인지 모르겠습니다. ㅠㅠ 도움을 주시면 감사하겠습니다 ㅠㅠ -
윈컴이
2013.05.13 13:13
$(functiom(){
를
jQuery(function($){
로 바꿔보세요~
-
KTK
2013.05.13 13:17
되지 않네요 ㅠㅠ 도움좀 주시면 감사하겠습니다 ㅠㅠㅠㅠㅠ
$ 처리 해 주셔야 하지 않을까요?