Home Web Front-end JS Tutorial JavaScript history is often used for product recent history browsing page 1/2_jquery

JavaScript history is often used for product recent history browsing page 1/2_jquery

May 16, 2016 pm 06:52 PM
javascript history record

JavaScript history is often used for product recent history browsing page 1/2_jquery
This article will use js cookie to implement this function. Because I have been studying jquery recently, I will use it by the way. If you don’t want to use jquery, then you need to understand the implementation process. Okay, you can write the code yourself.
You need to use a jquery cookie plug-in to operate cookies
You need to know a little bit about json. The data uses json. For simplicity, it is assumed here that only 3 browsing records are recorded.
The basic process is as follows:
1. If the number of historical products recorded in the cookie is 0 or 1 or 2, insert it directly into the cookie.
2. If the number of records in the cookie is 3 (because we have limited it to only 3 records), then remove the first set of records. The way to remove them is to traverse again, but not from the first one. Starting from the second one, insert new history records.

Preparation:
1. The json string we want to store in the cookie is similar to the following:

Copy code The code is as follows :


var hisProduct = eval[
{"url":"1.html","imgurl":"1.jpg","proname":"pig1","proprice" :100},
{"url":"2.html","imgurl":"2.jpg","proname":"pig2","proprice":200},
{"url" :"3.html","imgurl":"3.jpg","proname":"pig3","proprice":300}
];


url: Is the product page url
imgurl: Is the picture url
proname: Product name
proprice: Product price
2. How to obtain this information? Let’s take Jingdong Mall as an example:
JavaScript history is often used for product recent history browsing page 1/2_jquery
What we need to get is the “yellow area” part above, and the other is the page address. Looking at its code, the code block that locates the key part is as follows:

HP Deskjet D2568 Color Inkjet Photo Printer

Best price dual ink drop printing technology restores the true color of photos


HP Deskjet D2568 Color Inkjet Photo Printerimg10.360buy.com/S1/809/8b2bf92f-74f9 -46c2-929d-f47fa6fce2d1.jpg" width="349" jqimg="http://img10.360buy.com/S0/809/8b2bf92f-74f9-46c2-929d-f47fa6fce2d1.jpg"/>< ;/p


JD.com’s prices are made into pictures:

  • Product number: 131407
  • Market price:¥499.00
  • price.360buy.com/P7EDAD82DC8D8212393096333144388F6,3.png" />(Notify me of price reduction)


    Use jquery to get the information we need:


    Copy code Code As follows:


    $(function(){
    var pro_url = document.URL;//Page address
    var pro_name = $(".Product_Name h1").text(); //Product name
    var pro_img = $("#Product_BigImage img")[0].src; //Image path
    var pro_price = $(".Pro_baseinfo li").eq(2).children( "img")[0].src;//Price
    })


    Supplement: Jingdong’s is a bit more complicated here, and if we write the program ourselves, we can give it a An id of the element to be retrieved.

    Demo acquisition (please refresh once after "Run Code")


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Windows Security history is missing or not showing up in Windows 11 Windows Security history is missing or not showing up in Windows 11 Feb 28, 2024 pm 03:58 PM

Are you worried that your lost Windows Defender history hides infections? Windows Security's protection history tracks defenders' behavior to help you easily identify and remove threats. But what if your Windows security history is empty, missing, or not showing up? In this article, we'll look at the possible causes and the steps you can take to correct the problem. Why is Windows protection history missing? If you haven't cleared your Windows Defender protection history recently but it still appears blank, the reasons may be: History settings not enabled: If you disable history settings, Microsoft Defender is not configured correctly

How to view viewing history on Kuaishou? Where is the viewing history on Kuaishou? How to view viewing history on Kuaishou? Where is the viewing history on Kuaishou? Mar 20, 2024 pm 06:50 PM

Kuaishou is a short video viewing platform used by many users. It is a good choice for passing time. It can relieve worries and boredom. Everyone can watch some short videos every day. Of course, sometimes everyone , I accidentally swiped my hand too fast and accidentally swiped over the video I liked. As a result, no one has collected these good-looking videos, so everyone still wants to watch these videos again, so you can use Use the viewing history on the software to see all the videos you have watched before, so that you can better find videos. You can view them in a few simple steps. Come and try it out. How to view Kuaishou's browsing history: 1. First enter Kuaishou, and then click on the three horizontal lines in the upper left corner. 2. Then click

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: key technologies for implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

Windows Defender history crash; detection cannot be removed. log Windows Defender history crash; detection cannot be removed. log Feb 23, 2024 am 09:37 AM

WindowsDefender is the default antivirus software in Windows PC that protects the PC from various threats like malware, viruses, and others. While Windows Defender keeps track of all its actions to protect your PC from these threats, many users complain about not being able to access Windows Defender protection history. In this article, we will tell you how to fix Windows Defender history crash and what to do if you cannot delete Detections.log. What is Windows Defender protection history? Windows Defender’s history feature allows you to view

How to delete protection history in Win11 system How to delete protection history in Win11 system Feb 19, 2024 pm 03:10 PM

In the Win11 system, our activity records may leak privacy, and some users want to delete these records to protect privacy. To delete protection history, you can follow these steps: First open Settings, then select Privacy & Security options, then tap Activity History, and finally tap Clear History to delete. This can effectively clear the protection history in the Win11 system and protect personal privacy information. Deletion method: 1. Click "Start" in the taskbar in the lower left corner and select "Settings" in the menu list. 2. After entering the new interface, click "Privacy and Security" in the left column, and then click "Activity" in the right column.

How to implement an online reservation system using WebSocket and JavaScript How to implement an online reservation system using WebSocket and JavaScript Dec 17, 2023 am 09:39 AM

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Clear gray Safari history in iPhone: Fixes Clear gray Safari history in iPhone: Fixes Jun 08, 2024 pm 06:44 PM

Is the Clear History button gray in Safari on iPhone? If this is the case, you won't be able to clear history in Safari at all. Stored cookies and website data may cause unsolicited events in your browser. However, if you follow the steps below, you can easily resolve the issue and delete stored user history from Safari. Fix 1 – Disable Content Restrictions Content restrictions on iPhone may limit the correct use of Safari browser. Step 1 – Open iPhone settings. Step 2 – Next, go to Screen Time settings. Step 3 – In Screen Time settings, turn on Content & Privacy Restrictions

See all articles