欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Jquery 源码中用到的正则 博客分类: web前端,openApi jQueryAjaxHTML

程序员文章站 2024-02-20 10:03:10
...

打开http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js

看了一眼,jquery用的正则出乎意料的少呀。

 

 

        // A simple way to check for HTML strings or ID strings
	// (both of which we optimize for)
	quickExpr = /^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,

	// Is it a simple selector
	isSimple = /^.[^:#\[\.,]*$/,

	// Check if a string has a non-whitespace character in it
	rnotwhite = /\S/,

	// Used for trimming whitespace
	rtrim = /^(\s|\u00A0)+|(\s|\u00A0)+$/g,

	// Match a standalone tag
	rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/,

后面还用到了一些比较简短的正则

相关标签: jQuery Ajax HTML