Several ways to remove the dotted box that appears when clicking a link

Several ways to remove the dotted box that appears when clicking a link
Here are a few ways to remove it:

Add the link directly
onfocus="this.blur()".
<a href="#" onfocus="this.blur()">Link</a>

CSS Implementation

Copy code
The code is as follows:

a{blr:expression(this.onFocus=this.close());} /* Only supports IE, too much use will result in low efficiency*/
a{blr:expression(this.onFocus=this.blur());} /* Only supports IE, too much use will result in low efficiency*/
a:focus { -moz-outline-style: none; } /* IE does not support */

htc implements IE support

Copy code
The code is as follows:

<public:attach event="onfocus" onevent="hscfsy()"/>
<script language="javascript">
function hscfsy(){
this.blur();
}
</script>

Call a {behavior:url(the path address of the htc file)}

Implemented through JavaScript traversal

Copy code
The code is as follows:

window.onload = function()
{
for(var ii=0; ii document.links$[$ii$]$.onfocus=function(){this.blur()}
}

5. For WordPress, you can use the internal JQuery framework to remove

Copy code
The code is as follows:

$("a").bind("focus",function(){
if(this.blur){ //If this.blur is supported
this.blur();
}
});

<<:  Two ways to manage volumes in Docker

>>:  The question of whether a tag opens a new page. The opening status of major websites is summarized

Recommend

HTML page native VIDEO tag hides the download button function

When writing a web project, I encountered an intr...

Tutorial on installing rabbitmq using yum on centos8

Enter the /etc/yum.repos.d/ folder Create rabbitm...

How to Enable or Disable Linux Services Using chkconfig and systemctl Commands

This is an important (and wonderful) topic for Li...

A complete guide to Linux environment variable configuration

Linux environment variable configuration When cus...

How to start and restart nginx in Linux

Nginx (engine x) is a high-performance HTTP and r...

Several specific methods of Mysql space cleaning

Table of contents Preface 1. Check the file disk ...

How to modify the scroll bar style in Vue

Table of contents First of all, you need to know ...

Vue3.0 routing automatic import method example

1. Prerequisites We use the require.context metho...

Solve the problem of Tomcat10 Catalina log garbled characters

Running environment, Idea2020 version, Tomcat10, ...

Nginx+FastDFS to build an image server

Installation Environment Centos Environment Depen...

How to get USB scanner data using js

This article shares the specific process of js ob...