HTML set as homepage and add to favorites_Powernode Java Academy

HTML set as homepage and add to favorites_Powernode Java Academy

How to implement the "Set as homepage" and "Add to favorites" functions in IE browser

Solution:

The function of setting the specified URL as the homepage mainly relies on the setHomePage method of IE's default behavior homePage, while the implementation of adding the specified URL to the favorites is the AddFavorite method of the external object.

Specific steps:

Set as Homepage

<a href="http://www.bjpowernode.com"   
   onClick="this.style.behavior='url(#default#homepage)';  
            this.setHomePage('http:// www.bjpowernode.com ');  
            return(false);"   
   style="behavior: url(#default#homepage)">  
    Set as homepage</a>  

Add to favorites:

<a href=" www.bjpowernode.com "   
  onclick="window.external.addFavorite(' www.bjpowernode.com ','Power Node');  
           return false;"   
  title="Add this site to your favorites!"   
  align="center">  
   Add to favorites</a>  

Please use IE browser for testing.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Analysis of HTTP interface testing process based on postman

>>:  MySQL 8.0.22 winx64 installation and configuration method graphic tutorial

Recommend

MySQL variable principles and application examples

In the MySQL documentation, MySQL variables can b...

Solution to invalid margin-top of elements in div tags

Just as the title says. The question is very stran...

React+TypeScript project construction case explanation

React project building can be very simple, but if...

Detailed code for adding electron to the vue project

1. Add in package.json "main": "el...

Tutorial on how to quickly deploy clickhouse using docker-compose

ClickHouse is an open source column-oriented DBMS...

Mysql 5.7.19 free installation version encountered pitfalls (collection)

1. Download the 64-bit zip file from the official...

Two ways to remove the 30-second ad code from Youku video

I believe everyone has had this feeling: watching ...

Two ways to connect WeChat mini program to Tencent Maps

I've been writing a WeChat applet recently an...

How to use default values ​​for variables in SASS

Variables defined in SASS, the value set later wi...

In-depth analysis of Linux NFS mechanism through cases

Continuing from the previous article, we will cre...

Solve the problem that Mysql5.7.17 fails to install and start under Windows

Install MySQL for the first time on your machine....

Nginx access log and error log parameter description

illustrate: There are two main types of nginx log...