target

UK[?tɑ:g?t] US[?tɑ:rg?t]

n. Target; purpose; (service) object; (shooting) Target

vt. Aim; take... as an attack target

Third person singular: targets Plural: targets Present participle: targeting targeting Past tense: targeted targetted Past participle: targeted targetted

name

英[ne?m]  美[nem] ?

n. Name; reputation; having... name; famous person

vt. Determine; decide; name...; name... named past participle: named

css target-name attribute syntax

Function: Specifies where to open the hyperlink (target destination).

Syntax: target-name: current|root|parent|new|modal|name;

Description: current at the link Open a hyperlink in the same frame, tab, or window. Root Hyperlink in the current tab or window. parent opens the hyperlink in the parent frame. If the current frame has no parent, this value is treated as root. new creates a new destination (see target-new). modal opens a new window in a new (temporarily created) modal window. Name Opens the link in an existing frame, window or tab. If the name destination does not exist, a new destination is created with that name.

Note: No browser currently supports target-name.

css target-name attribute example

//在新窗口打開所有超鏈接,暫無瀏覽器支持該屬性
a
{
target-name:new;
}