Home > Web Front-end > JS Tutorial > body text

js implements various menu commands of the browser such as printing, viewing source files, etc._javascript skills

WBOY
Release: 2016-05-16 17:19:00
Original
1061 people have browsed it

Copy code The code is as follows:

input type="button" onclick="document.execCommand ('open')" value=Open
input type="button" onclick="document.execCommand('saveas')" value=Save
input type="button" onclick="document.execCommand(' print')" value=Print
input type="button" onclick="document.execCommand('selectall')" value=Select all
input type="button" onclick="location.replace('view -source:' location)" value=Source file
input type="button" onclick="window.external.ShowBrowserUI('PrivacySettings',null)" value=Security options
input type="button" onclick ="window.external.ShowBrowserUI('LanguageDialog', null)" value=Language settings
input type="button" onclick="window.external.AddFavorite(location.href, document.title)" value=Add to favorites folder
input type="button" onclick="window.external.ShowBrowserUI('OrganizeFavorites', null)" value=Organize favorites
input type="button" value=refresh name=refresh onclick="window .location.reload()">
input type="button" value=Import Favorites onclick=window.external.ImportExportFavorites(true,'');
input type="button" value=Export Favorites Clip onclick=window.external.ImportExportFavorites(false,'');
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!