房价狗-链家房价调价历史

房价狗-链家房价调价历史,查看房源的历史挂牌价调价记录

目前為 2018-05-07 提交的版本,檢視 最新版本

// ==UserScript==
// @name         房价狗-链家房价调价历史
// @namespace    http://www.fangjiagou.com/
// @version      1.0
// @description  房价狗-链家房价调价历史,查看房源的历史挂牌价调价记录
// @author       房价狗
// @match        *.lianjia.com/ershoufang/*.html
// @run-at       document-end
// @grant        unsafeWindow
// @grant        GM_xmlhttpRequest
// @require      https://cdn.bootcss.com/jquery/1.12.4/jquery.min.js
// @require      https://cdn.bootcss.com/fancybox/3.3.5/jquery.fancybox.js
// @resource	 https://www.fangjiagou.com/tampermokey/jquery.fancybox-1.3.4.css

// ==/UserScript==

(function(window, $) {
    'use strict';

	$(document).ready(function(){
		
		var fid = $("div.compareBtn.LOGCLICK").attr("log-mod");
		var city_abbr = window.ljConf.city_abbr;
		console.log("FID="+fid);
		console.log("CITY="+city_abbr);

		$('head').append('<link href="//www.fangjiagou.com/tampermokey/jquery.fancybox-1.3.4.css" rel="stylesheet">');
		var html = '<div class="action"><button id="parentIframe" style="background-color: #bd362f;color: #fff;" href="//www.fangjiagou.com/tampermokey/show_history.php?city=' + city_abbr + '&house_id='+ fid +'">历史调价</button><span id="favCount" class="count">点击查看</span></div>';
		$("div.action").eq(0).before(html);

		$("#parentIframe").fancybox({
			'width'				: '60%',
			'height'			: '60%',
			'autoScale'			: true,
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'type'				: 'iframe'
		});
		
	});

})(window.unsafeWindow, window.$);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址