jquery plugin 중에서 메뉴플러그인 10가지를 소개합니다.
사용하기 편리하더군요 .
사용하기 편리하더군요 .
http://www.ajaxline.com/10-best-jquery-menu-plugins
$.ajax({ type: 'get' , dataType: "xml" , url: "Service.aspx" , data: "arg=L , success: function(xml) { // xml 노드 null 확인 if ($(xml).find("list").find("item").length > 0) { // totalitem 찾기 var totitem = $(xml).find("totalitem").text(); // item 노드 loop $(xml).find("list").find("item").each(function(idx) { var idx = $(this).find("idx").text() var title = $(this).find("title").text() var content = $(this).find("content").text() }); } } , error: function(xhr, status, error) {alert(error); } });
$("") .attr("selected", "selected") .text("텍스트") .attr("value", "값") .appendTo("#selectboxid"); $("#selectboxid") .change(function() { alert(this.value); });
자 이제는 jQuery 코드..
거의 ajax 를 사용해서 바인딩위주로 동작하기에 코드는 간단하다..
자..
그러면 이제 data 를 읽어올 webservice 를 만들어 봅시다..
역시 씸플하게..
A.B.C 코드를 읽어오는 메소드를 한개씩