aliparser

sample goods

目前为 2016-01-27 提交的版本。查看 最新版本

// ==UserScript==
// @name aliparser
// @namespace Violentmonkey Scripts
// @grant none
// @description:en sample goods
// @include http://*aliexpress.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js
// @version 0.0.1.20160127070800
// @description sample goods
// ==/UserScript==

setButton()

addEnentClick()

setIframe()

function setIframe(){
	
	var iframe = '<iframe src="http://tdom.in/www/ali/" id="iframe"></iframe>';
	$(iframe).css({'width':'100%','height':'300px'}).prependTo('body')
		
}
function addEnentClick(){
	
	$('.addButton').click(function(){
		if($(this).attr('data-it')=='1'){
			var object = {
			price: $('#product-price [itemprop=highPrice]').text() || $('#product-price [itemprop=price]').text(),
			href:location.href,
			image:$('.ui-image-viewer-thumb-wrap img').attr('src'),
			id:$('#hid-product-id').val()
		    }
			object.price += ' '+$('#product-price [itemprop=priceCurrency]').text()
			alert(object.image)
		}else{
		var item = $(this).closest('li')
		var object = {
			price:item.find('.info [itemprop=price]').html(),
			href:item.find('a.picRind').attr('href'),
			image:item.find('.picCore').attr('src'),
			id:item.find('.atc-product-id').val()
			}
		}
		win = document.getElementById('iframe').contentWindow
		win.postMessage(object,'*')

	})
	
}

function setButton(){

	var button = '<input type="button" value="ДОБАВИТЬ" class="addButton">'
	var appendTo = $('.list-item').length?'.list-item':'.product-name'
	//if(!appendTo.length) appendTo = '.list-item'
	//alert(appendTo)
	$(button).css({'position': 'absolute','top':'0px','left':'45px','z-index':'100','background':'#EA7B7B',
				  'padding':'5px 20px','border':'none','margin':'4px'}).appendTo(appendTo).attr('data-it','0')
	if(appendTo=='.product-name')
		$('.addButton').css('position','static').attr('data-it','1')
	
}

QingJ © 2025

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