国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery中$this和$(this)的區(qū)別介紹(一看就懂)

2019-11-20 12:06:04
字體:
供稿:網(wǎng)友
// this其實(shí)是一個Html 元素。// $this 只是個變量名,加$是為說明其是個jquery對象。// 而$(this)是個轉(zhuǎn)換,將this表示的dom對象轉(zhuǎn)為jquery對象,這樣就可以使用jquery提供的方法操作。(function($){	$.fn.hilight = function(options){		debug(this);		var defaults = {			foreground: 'red',			background: 'yellow'		};		var opts = $.extend({}, $.fn.hilight.defaults, options);		return this.each(function() {      // this其實(shí)是一個Html 元素。      // $this 只是個變量名,加$是為說明其是個jquery對象。      // 而$(this)是個轉(zhuǎn)換,將this表示的dom對象轉(zhuǎn)為jquery對象,這樣就可以使用jquery提供的方法操作。			$this = $(this);			// build element specific options			var o = $.meta ? $.extend({}, opts, $this.data()) : opts;						// update element styles			$this.css({				backgroundColor: o.background,				color: o.foreground			});			var markup = $this.html();			// call our format function			markup = $.fn.hilight.format(markup);			$this.html(markup);		});	};	// define our format function	$.fn.hilight.format = function(txt) {		return '<strong>' + txt + '</strong>';	};	// 插件的defaults	$.fn.hilight.defaults = {		foreground: 'red',		background: 'yellow'	};	function debug($obj) {		if (window.console && window.console.log){			window.console.log('hilight selection count: ' + $obj.size());		}	};})(jQuery)
發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 济源市| 芜湖县| 泸西县| 新野县| 赤壁市| 潍坊市| 鄯善县| 揭西县| 桂阳县| 云阳县| 扶余县| 通山县| 天全县| 福海县| 新泰市| 金华市| 盘山县| 理塘县| 福州市| 辽宁省| 常熟市| 同江市| 宜都市| 平潭县| 章丘市| 南投县| 凤山县| 喀喇沁旗| 福安市| 宁德市| 甘德县| 象州县| 涪陵区| 阿拉尔市| 兴安县| 东光县| 磐石市| 华坪县| 卢龙县| 驻马店市| 东山县|