<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function($){
	jQuery.fn.select = function(options){
		return this.each(function(){
			var $this = $(this);
			var $selectOption = $this.find(".select-item-value");
			var $el = $this.find("ul &gt; li");
									
			$this.click(function(e){
				$(this).children(".select-drop-down").toggleClass("dis");
				e.stopPropagation();
			});
			
			$this.on('click','.select-drop-down .dis',function(){
				$("#kcid").blur();
			});
			
			$el.bind("click",function(){
				var $this_ = $(this);
				$this_.parent().parent().parent().find(".select-item-value .text").text($this_.text());
				$this.find(".select-value").val($this_.attr('data-key'));
				getKechengPaymentInfo($this_.attr('data-key'));
				getPaymentSms($this_.attr('data-key'));
				$("#kcid").blur();
			});
			
			$("body").bind("click",function(){
				$this.find(".select-drop-down").removeClass("dis");
			});
			
		});
		
	}
})(jQuery); </pre></body></html>