is to change the target frame of the basic link to open in a new page. Changing _blank can change the opened target frame. The following is a summary through an example.
In fact, many tags such as and
<a href="xxx.htm" target="_blank">超链接内容</a> <form action="xxx.htm" target="_blank">表达内容<input type="submit" value="提交按钮"></form>
If you do not add this sentence, the default page will be refreshed, that is, target="_self".
<base target=Right>
The function of this statement is to add target=Right to all link instructions that do not specify a target. For your < ;select>It doesn't matter.
For example, your original program is as follows:
##Then it is completely equivalent to the following code:
<a href=p1.html target=Right>第一页</a> <a href=p2.html target=Right>第二页</a> <a href=i1.html target=_blank>首页</a> <a href=i2.html target=_self>刷新</a>