Home >Web Front-end >JS Tutorial >Summary of some technical and practical js codes_javascript skills

Summary of some technical and practical js codes_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:44:53825browse
Maximize the page
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
self.focus();
Default img image
SummaryIf there is no mengzhaobin.jpg, error.jpg will be displayed
Shield the right mouse button
oncontextmenu=Summary of some technical and practical js codes_javascript skillswindow.event.returnvalue=false Summary of some technical and practical js codes_javascript skills
Uncheck Prevent copying

No pasting allowed
onpaste=Summary of some technical and practical js codes_javascript skillsreturn falseSummary of some technical and practical js codes_javascript skills
Prevent copying
oncopy=Summary of some technical and practical js codes_javascript skillsreturn false;Summary of some technical and practical js codes_javascript skills oncut=Summary of some technical and practical js codes_javascript skillsreturn false;Summary of some technical and practical js codes_javascript skills
There are icons in front of the address bar and favorites

Close input method

Prevent being framed
if (top.location != self.location)top.location=self.location;
Webpage cannot be saved as
Statement:
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