IT story

"필수"jQuery 플러그인은 무엇입니까?

hot-time 2020. 8. 6. 07:52
반응형

"필수"jQuery 플러그인은 무엇입니까? [닫은]


가장 유용한 JQuery 플러그인이 무엇인지 알고 싶습니다. 나는 일반적 이지 않은 요구를 처리하는 것보다는 Tablesorter 와 같은 일반적인 UI 개발에 유용 할 수있는 것에 관심이 있습니다 .

플러그인의 목적에 대한 간단한 설명을 제공 할 수 있다면 정말 도움이 될 것입니다.

고마워, 돈


나의 목록:

  • 자동 완성
    • 사용자가 검색 및 필터링을 활용하여 일부 값을 빠르게 찾고 선택하도록하는 입력 필드입니다.
  • JSON
    • JSON 데이터를 검색하고 조작하는 JSON 플러그인.
  • 쿠키
    • 쿠키 읽기, 쓰기 및 삭제를위한 단순하고 가벼운 유틸리티 플러그인.
  • Vaildation
    • 양식 입력 데이터를 검증합니다.
  • UI
    • 모든 기능을 갖춘 즉시 사용 가능한 위젯 등 ...
  • 상호 작용
    • 드래그, 정렬 가능, 드롭 가능, 플러그 앤 플레이 구성 요소 및 시각 효과.
  • 주기
    • 다양하고 가벼운 이미지 슬라이드 쇼 플러그인.

우리는 현재 다음을 사용합니다.

가장 인상적인

jquery UI 요소 :

유용한 커뮤니티 플러그인 :

앞으로 더 많은 링크를 추가하겠습니다 ...


플로트 플러그인 (플로팅 라이브러리 / 플러그인)은이 "필수"목록에 위치 할 가치가 있다고 생각 합니다.

또한 여기에서는 StackOverflow에서 사용자 계정 페이지에 평판 히스토그램을 표시하는 데 사용됩니다.


내가 작업하고있는 것을 열거 할 것이다 ...

My jLINQ plugin is a jQuery version of .NET LINQ. It's made for working with in-memory collections (not talking directly to the server) and let's you use syntax similar to the following.

var results = $.from(data)
    .ignoreCase()
    .startsWith("firstName","m")
    .or("n")
    .isNot("administrator")
    .orderBy("lastName")
    .select();

It supports a bunch of other commands that you find in LINQ for ordering and grouping along with most of the selection commands like contains, between, greaterThan, etc...

Here is a demo - It's stable, but still in progress

Maybe not must have, but might be useful as it progresses...


I just found jqGrid and it looks very good.

and it also has lots of documentation (right now a 99 pages pdf) and examples



For an unobtrusive way to send messages to the client without affecting the page's content permanently, I use jGrowl, based on the OSX Growl system.

Lot's of options, settings, and it keeps the page clean : )


jQuery tools from Flowplayer is really fancy. I really like the expose and overlay plugin.


I know this is an old post but, just thought I would throw my 2 cents in, for future reference.

Colorbox - Definitely the best modal window/lightbox for Jquery.

The Validation plugin (previously mentioned) also works very well.


UI - no better way to do draggables, resizables and few others.

Slibox2 - ultimate lightbox clone for jQuery, very easy to use.

iFixPng - simple solution for IE6 PNG w/alpha.


I have been very impressed with the Filament Group's Date Range Picker


UI is definitely a must-have. As a grid component, I would recommend jqGrid. IMHO, it is better than flexiGrid.


I always use Facebox to display pop-up forms and messages to the user. It keeps the UI clean (most of our users use Facebook), and yet it's not as bland as using alert().


If you're using Visual Studio 2008 to code your jQuery you need the Intellisense: http://weblogs.asp.net/bleroy/archive/2008/10/27/jquery-intellisense-documentation-file-available.aspx


http://docs.jquery.com/Plugins/dimensions , it has great offset and outerwith functions...


[edit] - Recently I've been using JQuery Tools as an alternative to JQueryUI, JQuery Tools is more HTML5/CSS3 centric: http://flowplayer.org/tools/index.html

I like JCarousel Lite (not JCarousel) http://www.gmarwaha.com/jquery/jcarousellite/ does just what I need and nothing more.

-fs


No one has mentioned these, which I found very usefull:

  • Datatables - Add advanced functions and interaction controls to a HTML table
  • BeautyTips - Add configurable tooltips to a HTML element

I'm a big fan of jTemplates, which gives you client side templating. I find it extremely powerful, especially for rendering results.


참고URL : https://stackoverflow.com/questions/267609/what-are-the-must-have-jquery-plugins

반응형