Launch and Open Links in New Window or Tab with _blank or _new as Target in HTML and Their Difference起動し、新しいウィンドウまたはタブでリンクを開く_blankや_newをターゲットに、 HTMLとの違いとして

On most websites, publishers may prefer to open the links to other web pages, especially external links that open web pages out of their own sites, in a new web browser window or tab, as most of the time, clicking on a link will load the new document from the link in the same window with where the link was.ほとんどのサイトは、サイト運営者を好む年5月に他のウェブページのリンクを開いて、特に外部サイトへのリンクを開いて自分のサイトのウェブページには、新しいウェブブラウザウィンドウまたは]タブで、ほとんどの時間として、リンクをクリックしては、負荷新しい文書からのリンクをクリックしてウィンドウをどこのリンクは同じです。 In HTML web programming language, to launch the new document (web pages) from links in a new window or tab effect is typically done through the use of target attributes on those links.ウェブのプログラミング言語をHTMLで、新しい文書を起動する( Webページ)からのリンクを新しいウィンドウまたはタブを通して行われる効果は、通常の使用をターゲット属性をこれらのリンクです。

In this case, the link anchors will be using “_blank” as the value of the “target” attribute.この場合には、下のリンクを使用してアンカーされるとして" _blank "の値を"ターゲット"属性を設定します。 “_blank” tells the web browser to open the new document loaded from the link in a new window. " _blank "は、 Webブラウザに読み込まれる新しい文書を開いてからのリンク先のページを新しいウィンドウで開きます。 “target” attribute is also used in websites with frame structure to tell the web browser which frame the target page of a link should open when click. "ターゲット"属性が使用されてもフレーム構造を伝えるウェブサイトへのリンクをウェブブラウザがフレームにリンク先のページを開くときには、クリックしてください。 However, “_blank” does not require the use of any frames.しかし、 " _blank "は任意のフレームを使用する必要があります。 The syntax or HTML code is typically as below:またはHTMLコードの構文は、通常は以下の通りです:

<a href=”newwindow.html” target=”_blank”>New Window</A>の<a href="newwindow.html" target="_blank">新しいウィンドウ< / >

There are also publishers who use “_new” instead of “_blank” as the value for “target” attribute to open a link in new window.サイト運営者には、 whoの使用も" _new "の代わりとして" _blank "の値を"ターゲット"の属性を開いてのリンクを新しいウィンドウで開きます。 There is actually no “_new” defined as frame target names by W3C HTML standards.実際にはない" _new "フレームのターゲットとして定義されて名前をW3CのHTMLの規格です。 The only four reserved names are “_blank”, “_parent”, “_self” and “_top”.唯一の4つの予約された名前は、 " _blank " 、 " _parent " 、 " _self "を、 " _top "です。 However, the “_new” value works the same way as “_blank” to launch the linked web documents in new browser window because of graceful error handling by web browsers.しかし、 " _new "値の作品と同じように" _blank "を起動して新しいブラウザウィンドウのドキュメントのリンク先のWeb優美なエラー処理のためにウェブブラウザです。 So “_new” is not a valid value for “target” attribute in link <a> anchor, and may cause inconsistent behaviour for strictly HTML compliant browser that ignores all other target names as frame target name should begin with an alphabetic character (az and AZ).ので、 " _new "ではないの有効な値を、 "ターゲット"の属性をリンクに関する<a>アンカー、および5月の振る舞いを厳密に不整合が原因のHTML準拠のブラウザで無視されるすべてのターゲットの名前を開始するフレームターゲット名はアルファベットの文字( AZとAZ順) 。

When “_new” is used, the web browser will look for an existing browser window that carries the “_new” handle name.ときに" _new "を使用する場合、既存のウェブブラウザは、ブラウザのウィンドウを探していて、 " _new "ハンドル名を入力します。 If there is none then browser will create and launch the target web document at new window (or new tab in browser that supports tabbed browsing), where browser is considered to be recovering from HTML error of targeting a non-existent window.場合にはなしに入力し、ブラウザを起動してターゲットを作成し、ウェブ文書を新しいウィンドウ(または新規作成]タブの[ブラウザをサポートしタブブラウズ) 、どこのブラウザが考えられるのターゲットHTMLエラーから回復し、存在しないウィンドウを開きます。 In this case, the new window will be named “_new”.この場合には、新しいウィンドウの名前は" _new "です。 However, if a window or a tab with “_new” handle already existed, the target page will be loaded into that window instead.しかし、もし、ウィンドウまたはタブに" _new "ハンドルが既に存在し、ターゲットページには、代わりにそのウィンドウに読み込まれています。 Theoretically, you no need to use “_new” as the value for “target”, as any other value name (ie “newwindow” or “newtab”) will work to create a new window if the so named window hasn’t existed yet when clicked on the link.理論的には、あなたを使用する必要はありません" _new "としての値を"ターゲット" 、その他の値の名前(例えば" newwindow "または" newtab " )を作成すると、新しいウィンドウでは動作の場合、存在していないのでウィンドウの名前はまだありません時のリンクをクリックしてください。

In other word, if you want the links to open in a new window on every click, use the “_blank”.他の単語へのリンクにしたい場合は、新しいウィンドウで開いてすべてのクリックして、使用して" _blank "です。 And you can use “_new” or another other valid value name starting with alphabetic character to open a new window and re-use that window for any other subsequent clicks that target to the same name.を使用することができます" _new "または別の他の有効な値の名前で始めると新しいウィンドウを開くにはアルファベットの文字や任意のウィンドウを再使用してターゲットを他の後続のクリック数が、同じ名前のです。

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 重要 :これは、機械翻訳ページで提供"現状有姿"を保証します。 Machine translation may be difficult to understand.機械翻訳を理解するのは難しいかもしれません。 Please refer toを参照してください original English articleオリジナルの英語記事索引 whenever possible.いつ可能です。

Share and contribute or get technical support and help atを共有して貢献や技術サポートとヘルプを得る My Digital Life Forums 私のデジタルライフフォーラム .です。



3 Responses to “Launch and Open Links in New Window or Tab with _blank or _new as Target in HTML and Their Difference” 3つの応答を"起動し、新しいウィンドウまたはタブでリンクを開く_blankや_newをターゲットに、 HTMLとの違いとして"

  1. Gustavo Ricouグスタボリク
    July 9th, 2007 23:27 2007年7月9日23:27
    1

    thank you…いただきありがとうございます…

  2. Brianブライアン
    December 24th, 2007 12:41 2007年12月24日12:41
    2

    Great Post!大きなポスト! Important piece of information.重要な情報です。

  3. yesa
    April 10th, 2008 13:42 2008年4月10日13:42
    3 4

    Your blog is so helpful.あなたのブログは非常にhelpful 。 Thank you.ありがとうございました。

Leave a Reply残して返信

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> これらのタグを使用することができます: <aのhref=のtitle= <abbrのtitle= <blockquote cite=""> <cite> <acronymのtitle= <b>ダウンロードの<code> <デル日時= " " >の<em> <i>て<strike> <strong> <q cite="">

Subscribe without commenting登録なしのコメント


Custom Search

New Articles新しい記事

Incoming Search Terms for the Article検索用語を受信するには

html open link in new tab HTMLの新規作成]タブでリンクを開く - - open link in new tab html HTMLの新規作成]タブでリンクを開く - - html link new tab HTMLのリンクを新規作成]タブ - - html link open in new tab HTMLのリンクを新しいタブで開く - - HTML open link new tab HTMLの新規作成]タブでリンクを開く - - html link in new tab のHTMLのリンクを新規作成]タブ - - html target tab HTMLのターゲット]タブ - - html open in new tab HTMLの新しいタブで開く - - html new tab HTMLの新規作成]タブ - - html link open new tab HTMLのリンクを開いて新規作成]タブ - - html code Open link in new tab 新しいタブに表示するHTMLコードでリンクを開く - - window.open tab window.openのタブをクリック - - href target tab hrefターゲット]タブ - - html target new tab HTMLのターゲットの新規作成]タブ - - HTML code to open link in new tab HTMLコードを新しいタブでリンクを開く - - link new tab リンクを新しいタブ - - href new tab href新規作成]タブ - - open link in new tab html code 新しいタブでリンクを開くHTMLコード - - new tab html 新しいタブに表示するHTMLの - - target tab ターゲット]タブ - - open link in a new tab html 新しいタブでリンクを開くのHTML - - link in new tab のリンクを新規作成]タブ - - html open tab HTMLの開いているタブ - - html open link in a new tab HTMLの新しいタブでリンクを開く - - open link new tab html HTMLの新規作成]タブでリンクを開く - - a href new tab 新しいタブをhref - - html link to new tab HTMLのリンクを新規作成]タブ - - a href target tab ターゲット]タブをhref - - link to new tab のリンクを新規作成]タブ - - html open in tab のHTML ]タブを開いて - - target new tab ターゲットの新規作成]タブ - - html href new tab HTMLのhref新規作成]タブ - - html open new tab HTMLの新規作成]タブを開きます - - html new tab link HTMLの新規作成]タブリンク - - launch link in new window 新しいウィンドウでリンクを立ち上げ - - href in new tab hrefで新しいタブに表示する - - html code open in new tab 新しいタブで開くHTMLコード - - html to open link in new tab HTMLを新しいタブでリンクを開く - - html "open link in new tab" HTMLの"新しいタブでリンクを開く" - - open links in new tab html HTMLの新規作成]タブでリンクを開く - - all すべての - - html href target tab HTMLのhrefターゲット]タブ - - link target new tab リンク先の新規作成]タブ - - code to open link in new tab のコードを新しいタブでリンクを開く - - href open new tab href新規作成]タブを開く - - open html link in new tab 新規作成]タブのHTMLのリンクを開いて - - link in new tab html のリンクを新しいタブに表示するHTMLの - - html opening link in new tab HTMLのオープニングのリンクを新規作成]タブ - - html link opens in new tab HTMLリンクポップアップを新規作成]タブ - - open a link in a new tab html リンク先のページを開くには新規作成]タブのHTML - - target frame new tab ターゲットフレームの新規作成]タブ - - target-new: tab ターゲット-新しい: ]タブ - - html code for opening link in new tab オープニングのHTMLコードを新規作成]タブのリンクを - - href target new tab hrefターゲットの新規作成]タブ - - href open in new tab href新しいタブで開く - - html links open in new tab HTMLのリンクが新しいタブで開く - - link new tab html 新しいタブに表示するリンクのHTML - - html open window in new tab 新しいタブを開いているウィンドウのHTML - - html open in a new tab HTMLの新規作成]タブを開いて、 - - open link in new tab code 新しいタブでリンクを開くコード - - html code open link new tab 新しいタブに表示するHTMLコードでリンクを開く - - html open link in new window tab HTMLのリンクを新しいウィンドウで開く]タブ - - a href open new tab href新規作成]タブを開いて - - opening link in new tab html オープニングのリンクを新しいタブに表示するHTMLの - - html open new tab link HTMLのリンクを開いて新しいタブに表示する - - open in new tab link html 新しいタブで開くリンクのHTML - - _blank new tab _blank新規作成]タブ - - html code for open in new tab のHTMLコードを新しいタブで開く - - html make link open in new tab HTMLのリンクを新しいタブで開く - - html link opens new tab HTMLリンクポップアップ新規作成]タブ - - html open links in new tab HTMLの新規作成]タブでリンクを開く - - window.open tabs window.openのタブ - - open in new tab html code 新しいタブで開くHTMLコード - - html target tabs HTMLのターゲット]タブ - - open window in tab ウィンドウに表示]タブを開いて - -