请帮忙用js或php写一个可以采集淘宝和天猫商品优惠价格的代码用函数方

请帮忙用js或php写一个可以采集淘宝和天猫商品优惠价格的代码用函数方,第1张

// ==UserScript==
// @name         JD
// @namespace    http://tampermonkeynet/
// @version      01
// @description  try to take over the world!
// @author       You
// @match        https://itemjdcom/
// @grant        none
// ==/UserScript==
/ jshint -W097 /
'use strict';
// Your code here
var divObj=documentcreateElement("input"); 
divObjtype="button";
divObjvalue='获取抓取内容'; 
divObjstylemarginTop="20px";
divObjstylemarginBottom="20px";
divObjstylemarginLeft="50px";
var first=documentbodyfirstChild;
documentbodyinsertBefore(divObj,first);
var result={};
divObjonclick=function(){
    //获取价格
    if(documentgetElementById("jd-price")){
        var priceDiv=documentgetElementById("jd-price");
        var price = priceDivinnerText;
        price = pricesubstr(1);
    }else if(documentgetElementById("price")){
        var pricePri=documentgetElementById("price");
        var priceDiv=pricePrifirstElementChild;
        var price = priceDivinnerText;
    }else if(documentgetElementsByClassName("price")[0]){
        var priceClass=documentgetElementsByClassName("price");
        var priceDiv=priceClass[0];
        var price = priceDivinnerText;
    }
    
    resultprice=price;
}

以上就是关于请帮忙用js或php写一个可以采集淘宝和天猫商品优惠价格的代码用函数方全部的内容,包括:请帮忙用js或php写一个可以采集淘宝和天猫商品优惠价格的代码用函数方、、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9691700.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-01
下一篇 2023-05-01

发表评论

登录后才能评论

评论列表(0条)

保存