您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
sample goods
当前为
// ==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.20160127050800 // @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(){ 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) if(appendTo=='.product-name') $('.addButton').css('position','static') }