最新のWeb開発のチュートリアル
 

AngularJS指令をNG-含みます


外部ファイルからHTMLを含めます:

<div ng-include="'myFile.htm'"></div>
»それを自分で試してみてください

定義と使用法

ng-includeディレクティブは、外部ファイルからHTMLを含んでいます。

含まれるコンテンツは、指定された要素ののchildNodesとして含まれます。

値はng-include属性も、ファイル名を返す式を指定できます。

デフォルトでは、インクルードされたファイルは、文書と同じドメインに配置する必要があります。


構文

< element ng-include=" filename " onload=" expression " autoscroll=" expression " ></ element >

NG-includeディレクティブも要素として使用することができます。

<ng-include src=" filename " onload=" expression " autoscroll=" expression " ></ng-include>

すべてのHTML要素によってサポートされています。


パラメーター値

Value Description
filename A filename, written with apostrophes, or an expression which returns a filename.
onload Optional. An expression to evaluate when the included file is loaded.
autoscroll Optional. Whether or not the included section should be able to scroll into a specific view.