The difference between the name and id of the a tag's target pointing to the iframe

The difference between the name and id of the a tag's target pointing to the iframe

Copy code
The code is as follows:

<iframe id="myFrameId" name="myFrameName" scrolling="no" frameborder="0" style="width:200px; height:150px; "></iframe>
<a href="../ashx/Print2DCodeImage.ashx?codeInfo=Demo123" target="myFrameName" >Print QR code</a>

The target of the a tag above points to the iframe named myFrameName. It is not appropriate to use Id as the target. If target="myFrameId", it is only supported by the new version of Chrome and Opera, and it does not work in IE10 and FF.

A small detail that took a lot of time.

<<:  Why do code standards require SQL statements not to have too many joins?

>>:  Basic principles for compiling a website homepage

Recommend

How to find and delete duplicate rows in MySQL

Table of contents 1. How to find duplicate rows 2...

Use pure CSS to disable the a tag in HTML without JavaScript

In fact, this problem has already popped up when I...

A brief discussion on value transfer between Vue components (including Vuex)

Table of contents From father to son: Son to Fath...

React useMemo and useCallback usage scenarios

Table of contents useMemo useCallback useMemo We ...

Analysis of the Linux input subsystem framework principle

Input subsystem framework The linux input subsyst...

Two ways to configure Vue global methods

Table of contents 1. Introduction 2. The first me...

An article to understand the execution process of MySQL query statements

Preface We need to retrieve certain data that mee...

How to use docker to deploy spring boot and connect to skywalking

Table of contents 1. Overview 1. Introduction to ...

How to design and create adaptive web pages

With the popularization of 3G, more and more peop...

MySQL 5.5.27 installation graphic tutorial

1. Installation of MYSQL 1. Open the downloaded M...

Example of deploying MySQL on Docker

Table of contents 1 What is container cloud? 2 In...

Using js to achieve waterfall effect

This article example shares the specific code of ...

MySQL data duplicate checking and deduplication implementation statements

There is a table user, and the fields are id, nic...

Do you know how to use the flash wmode attribute in web pages?

When doing web development, you may encounter the...