aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/xslt/value-of/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/xslt/value-of/index.html')
-rw-r--r--files/ko/web/xslt/value-of/index.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/files/ko/web/xslt/value-of/index.html b/files/ko/web/xslt/value-of/index.html
new file mode 100644
index 0000000000..90f1777bed
--- /dev/null
+++ b/files/ko/web/xslt/value-of/index.html
@@ -0,0 +1,31 @@
+---
+title: value-of
+slug: Web/XSLT/value-of
+tags:
+ - XSLT_Reference
+translation_of: Web/XSLT/Element/value-of
+---
+<p>{{ XsltRef() }}</p>
+<p><code>&lt;xsl:value-of&gt;</code> 요소는 XPath 식을 평가하여 그것을 문자열로 바꾸고 문자열을 결과 트리에 씁니다.</p>
+<h3 id=".EA.B5.AC.EB.AC.B8" name=".EA.B5.AC.EB.AC.B8">구문</h3>
+<pre>&lt;xsl:value-of select=EXPRESSION disable-output-escaping="yes" | "no" /&gt;</pre>
+<h3 id=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1" name=".ED.95.84.EC.88.98_.EC.86.8D.EC.84.B1">필수 속성</h3>
+<dl>
+ <dt>
+ <code>select</code></dt>
+ <dd>
+ 평가하고 출력 트리에 쓸 XPath 식을 지정합니다.</dd>
+</dl>
+<h3 id=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1" name=".EC.84.A0.ED.83.9D_.EC.86.8D.EC.84.B1">선택 속성</h3>
+<dl>
+ <dt>
+ <code>disable-output-escaping</code> (Netscape은 변환 결과를 "output" 아래에 직렬하지 않습니다. 그래서 이 속성은 본래 문맥에서는 무의미합니다. HTML 엔티티를 출력하기 위해서는, 대신 숫자값을 쓰세요. 보기 &amp;<code>nbsp</code> 대신 <code>&amp;#160</code>)</dt>
+ <dd>
+ 특수 문자를 출력에 쓸 때 해석할(escape) 지를 지정합니다. 가능한 값은 "<code>yes</code>"나 "<code>no</code>"입니다. 예를 들어, "<code>yes</code>"로 하면, &lt;tt&gt;&gt;&lt;/tt&gt; 문자의 출력은 "<code>&amp;gt</code>"가 아니라 <code>&gt;</code>입니다.</dd>
+</dl>
+<h3 id=".ED.83.80.EC.9E.85" name=".ED.83.80.EC.9E.85">타입</h3>
+<p>명령, 템플릿 안에 나타남.</p>
+<h3 id=".EC.A0.95.EC.9D.98" name=".EC.A0.95.EC.9D.98">정의</h3>
+<p><a class="external" href="http://www.w3.org/TR/xslt#value-of">XSLT section 7.6.1, Generating Text with xsl:value-of</a></p>
+<h3 id="Gecko_.EC.A7.80.EC.9B.90" name="Gecko_.EC.A7.80.EC.9B.90">Gecko 지원</h3>
+<p>위 경우를 빼고는 지원함.</p>