Select2 Support Chinese and English search

Source: Internet
Author: User

Recently in the use of English search Select2 (V3.5 version ) found a problem: Polyphone, Chongqing in some pinyin library is translated into a heavy (Zhong), helpless only at the same time support Chinese search, select2 How to support the search in English, the following direct title, On the Code ~ ~ ~

Matcher:function (term, text) {
				var reg = new RegExp ("[\\u4e00-\\u9fff]+", "G");   determine if the contents of the search box are not Chinese
				if (reg.test) {
					return Text.indexof (term)! =-1;
				} else{
					This is my download of a phonetic library, there is a need to download the last link in the article
					var mod=zhtopinyin (text);
					var tf1=mod.a.touppercase (). IndexOf (Term.touppercase ()) ==0;
					var tf2=mod.b.touppercase (). IndexOf (Term.touppercase ()) ==0;
					Return  (tf1| | TF2);		
				}
			}

Rewrite the Matcher function of the Select2 plugin.


Pinyin Library Download Link

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.