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

Solution to the problem that VC6.0 cannot be used when installed on WIN10

VC6.0 is indeed too old VC6.0 is a development to...

Implementation of adding remark information to mysql

Preface Some people have asked me some MySQL note...

MYSQL uses Union to merge the data of two tables and display them

Using the UNION Operator union : Used to connect ...

How to find the specified content of a large file in Linux

Think big and small, then redirect. Sometimes Lin...

Determine the direction of mouse entry based on CSS

In a front-end technology group before, a group m...

MySQL 5.7.18 Installer installation download graphic tutorial

This article records the detailed installation tu...

Several common methods of CSS equal height layout

Equal height layout Refers to the layout of child...

Docker container introduction

1. Overview 1.1 Basic concepts: Docker is an open...

How to add rounded borders to div elements

As shown below: CSS CodeCopy content to clipboard...

Solution to nginx hiding version number and WEB server information

Nginx can not only hide version information, but ...

MySQL high availability solution MMM (MySQL multi-master replication manager)

1. Introduction to MMM: MMM stands for Multi-Mast...

IDEA graphic tutorial on configuring Tomcat server and publishing web projects

1. After creating the web project, you now need t...

jQuery plugin to implement search history

A jQuery plugin every day - to make search histor...

Solution to the problem that the Vue page image does not display

When making a new version of the configuration in...