Home > Common Problem > body text

How to delete QQ space in batches

Release: 2020-09-12 13:59:37
Original
57262 people have browsed it

How to batch delete QQ Space talkies: First search for "Space Talks batch deletion" on the Internet; then select a third-party software to download from the search results; then open QQ Space and find the items that need to be deleted. Talk about it; finally delete it according to the software prompts.

How to delete QQ space in batches

Regarding this issue, it should first be clear that QQ space itself does not provide the function of batch deletion of comments, and can only be achieved with the help of third-party software.

The following will teach you how to operate:

Specific steps: Open the QQ space, click the (Talks) menu, enter the (My Talks) page, in (I Find the talk that needs to be deleted on the Talk) page, and then click the (more) button behind the talk. After clicking the (More) button, find (Delete) in the pop-up options and click it. Click (Yes) in the pop-up confirmation dialog box to delete the article. This method can only delete and compare one item at a time. Troublesome but very safe;

How to delete QQ space in batches

Batch deletion:

Open Baidu search-Space Talk about batch deletion,

Then click - Baidu, and there will be many softwares in the search results page;

Choose one according to your hobbies, download and install it,

Then enter your account and password to log in

After logging in, click Confirm to delete all spaces, and the software will start to delete in batches. During the deletion process, you will be asked to enter a verification code;

Then check the "Select All" checkbox, and then click "Batch delete" link.

Use code to implement:

Step 1: Open the browser on your computer to log in to your QQ space

Step 2: Click Your talk column

Step 3: Press the F12 key on the computer or click the menu bar in the upper right corner, click Developer Tools

Step 4: See the right half of the screen, Find a menu called Console and click

Step 6: Click on the input field at the bottom and write the following js code:

var delay = 1000;
function del() {
    document.querySelector('.app_canvas_frame').contentDocument.querySelector('.del_btn').click();
    setTimeout("yes()", delay);
}
function yes() {
    document.querySelector('.qz_dialog_layer_btn').click();
    setTimeout("del()", delay);
}
del();
Copy after login

Then press Enter.

The above is the detailed content of How to delete QQ space in batches. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!