Save part of the html page to the jquery code of the new html file _ jquery

Source: Internet
Author: User
Save part of the html page to a new html file and use jquery to get the content of the specified id. Then save the code. The Code is as follows:


// Save the chat record to your local device
Function save_record ()
{
// Get the current date as the file name
Var time = new Date ();
Var filename = time. toLocaleDateString ();
// Obtain some content on the current page
Var record = $ ("# contentList" comment .html ();
// Open a new window and save
Var winRecord = window. open ('about: blank ',' _ blank ', 'top = 100 ');
WinRecord.doc ument. open ("text/html", "UTF-8 ");
WinRecord.doc ument. write (""+ Record + "");
WinRecord.document.exe cCommand ("SaveAs", true, filename + ". html ");
WinRecord. close ();
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.