aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web
diff options
context:
space:
mode:
authorMDN <actions@users.noreply.github.com>2021-06-09 00:40:02 +0000
committerMDN <actions@users.noreply.github.com>2021-06-09 00:40:02 +0000
commitbbed12e574958e07af25518c7e66bd5ee2fb2d2c (patch)
tree6e15ea0aabe07bcc53e1bcf571c0e086e3976a25 /files/zh-cn/web
parent67bda90e70fdf1714ec4f4886ec9261992bd4422 (diff)
downloadtranslated-content-bbed12e574958e07af25518c7e66bd5ee2fb2d2c.tar.gz
translated-content-bbed12e574958e07af25518c7e66bd5ee2fb2d2c.tar.bz2
translated-content-bbed12e574958e07af25518c7e66bd5ee2fb2d2c.zip
[CRON] sync translated content
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r--files/zh-cn/web/api/elementcssinlinestyle/style/index.html81
-rw-r--r--files/zh-cn/web/api/request/context/index.html43
2 files changed, 0 insertions, 124 deletions
diff --git a/files/zh-cn/web/api/elementcssinlinestyle/style/index.html b/files/zh-cn/web/api/elementcssinlinestyle/style/index.html
deleted file mode 100644
index 28248babe1..0000000000
--- a/files/zh-cn/web/api/elementcssinlinestyle/style/index.html
+++ /dev/null
@@ -1,81 +0,0 @@
----
-title: HTMLElement.style
-slug: Web/API/ElementCSSInlineStyle/style
-translation_of: Web/API/ElementCSSInlineStyle/style
-original_slug: Web/API/HTMLElement/style
----
-<div>{{ APIRef("HTML DOM") }}</div>
-
-<p><code><strong>HTMLElement.style</strong></code> 属性返回一个 <a href="/zh-US/docs/DOM/CSSStyleDeclaration" title="DOM/CSSStyleDeclaration"><code>CSSStyleDeclaration</code></a> 对象,表示元素的 内联<a href="/zh-CN/docs/Web/HTML/Global_attributes#style"><code>style</code> 属性(attribute)</a>,但忽略任何样式表应用的属性。 通过 <code>style</code> 可以访问的 CSS 属性列表,可以查看 <a href="/en-US/docs/Web/CSS/CSS_Properties_Reference" title="/en-US/docs/Web/CSS/CSS_Properties_Reference">CSS Properties Reference</a>。</p>
-
-<p>由于 <code>style</code> 属性的优先级和通过style设置内联样式是一样的,并且在css层级样式中拥有最高优先级,因此在为特定的元素设置样式时很有用。</p>
-
-<h3 id="设置_style_属性">设置 <code>style</code> 属性</h3>
-
-<p>注意<strong>不能</strong>通过直接给style属性设置字符串(如:elt.style = "color: blue;")来设置style,因为style应被当成是只读的(尽管Firefox(Gecko), Chrome 和 Opera允许修改它),这是因为通过style属性返回的<code><a href="https://developer.mozilla.org/en-US/docs/DOM/CSSStyleDeclaration" title="DOM/CSSStyleDeclaration">CSSStyleDeclaration</a>对象是只读的。但是style属性本身的属性<strong>能</strong>够用来设置样式。此外,通过单独的样式属性(如</code>elt.style.color = '...'<code>)比用</code>elt.style.cssText = '...' 或者 elt.setAttribute('style', '...')形式更加简便,除非你希望完全通过一个单独语句来设置元素的全部样式,因为通过style本身属性设置的样式不会影响到通过其他方式设置的其他css属性的样式。</p>
-
-<h2 id="例子">例子</h2>
-
-<pre class="brush:js">// 在单个语句中设置多个样式
-elt.style.cssText = "color: blue; border: 1px solid black";
-// 或者
-elt.setAttribute("style", "color:red; border: 1px solid blue;");
-
-// 设置特定样式,同时保持其他内联样式值不变
-elt.style.color = "blue";
-</pre>
-
-<h3 id="获取元素样式信息">获取元素样式信息</h3>
-
-<p>通常,要了解元素样式的信息,仅仅使用 <code>style</code> 属性是不够的,这是因为它只包含了在元素内嵌 style 属性(attribute)上声明的的 CSS 属性,而不包括来自其他地方声明的样式,如 {{HTMLElement("head")}} 部分的内嵌样式表,或外部样式表。要获取一个元素的所有 CSS 属性,你应该使用 {{domxref("window.getComputedStyle()")}}。</p>
-
-<pre class="brush: html">&lt;!DOCTYPE HTML&gt;
-&lt;html&gt;
-&lt;body style="font-weight:bold;"&gt;
-
- &lt;div style="color:red" id="myElement"&gt;..&lt;/div&gt;
-
- &lt;/body&gt;
-&lt;/html&gt;</pre>
-
-<p>下面的代码输出 style 所有属性的名字,以及为元素 <code>elt</code> 显式设置的属性值和继承的计算值(computed value):</p>
-
-<pre class="brush: js">var element = document.getElementById("myElement");
-var out = "";
-var elementStyle = element.style;
-var computedStyle = window.getComputedStyle(element, null);
-
-for (prop in elementStyle) {
- if (elementStyle.hasOwnProperty(prop)) {
- out += " " + prop + " = '" + elementStyle[prop] + "' &gt; '" + computedStyle[prop] + "'\n";
- }
-}
-console.log(out)</pre>
-
-<p>输出结果如下:</p>
-
-<pre>...
-fontWeight = '' &gt; 'bold'
-color = 'red' &gt; 'rgb(255, 0, 0)'
-...
-</pre>
-
-<p>请注意,计算样式中font-weight的值为“bold”,元素的style属性中缺少该值</p>
-
-<h2 id="Specification" name="Specification">规范</h2>
-
-<p><a class="external" href="http://www.w3.org/TR/DOM-Level-2-Style/css.html#CSS-ElementCSSInlineStyle">DOM Level 2 Style: ElementCSSInlineStyle.style</a></p>
-
-<p><a href="https://www.w3.org/TR/cssom-1/#the-elementcssinlinestyle-interface">CSSOM: ElementCSSInlineStyle</a></p>
-
-<h2 id="兼容性">兼容性</h2>
-
-
-
-<p>{{Compat("api.HTMLElement.style")}}</p>
-
-<h2 id="相关链接">相关链接</h2>
-
-<ul>
- <li><a href="/zh-CN/docs/DOM/Using_dynamic_styling_information" title="DOM/Using dynamic styling information">Using dynamic styling information</a></li>
-</ul>
diff --git a/files/zh-cn/web/api/request/context/index.html b/files/zh-cn/web/api/request/context/index.html
deleted file mode 100644
index 98730ceb60..0000000000
--- a/files/zh-cn/web/api/request/context/index.html
+++ /dev/null
@@ -1,43 +0,0 @@
----
-title: Request.context
-slug: Web/API/Request/context
-translation_of: Web/API/Request/context
----
-<div>{{APIRef("Fetch")}}{{deprecated_header()}}</div>
-
-<p><span class="seoSummary">The deprecated </span><font><font>弃用</font></font><strong><code>context</code></strong><font><font>所述的只读属性{{domxref("请求")}}接口包含请求的上下文(例如,</font></font><code>audio</code><font><font>,</font></font><code>image</code><font><font>,</font></font><code>iframe</code><font><font>)。</font></font><font><font>这定义了要获取的资源类型。</font><font>它已由{{domxref("Request.destination”,“ destination")}}属性取代。</font></font> This defines what sort of resource is being fetched. This has been replaced by the {{domxref("Request.destination", "destination")}} property.</p>
-
-<p>The context of a request is only relevant in the <font><font>请求的上下文仅与</font></font><a href="https://wiki.developer.mozilla.org/en-US/docs/Web/API/ServiceWorker_API"><font><font>ServiceWorker API</font></font></a><font><font>相关</font><font>;</font><font>服务人员可以根据URL是用于图像还是可嵌入对象(例如{{htmlelement("视频")}},{{domxref("iframe")}}等)进行决策。</font></font>; a service worker can make decisions based on whether the URL is for an image, or an embeddable object such as a {{htmlelement("video")}}, {{domxref("iframe")}}, etc.</p>
-
-<div class="note">
-<p><strong>Note<font><font>注意</font></font></strong><font><font>:您可以在“ </font></font><a href="https://fetch.spec.whatwg.org/#concept-request-context"><font><font>获取规范请求上下文”</font></font></a><font><font>部分中</font><font>找到不同可用上下文的完整列表,包括关联的上下文框架类型,CSP指令和平台功能示例</font><font>。</font></font> section.</p>
-</div>
-
-<h2 id="Syntax">Syntax</h2>
-
-<pre class="syntaxbox notranslate">var <var>myContext</var> = <var>request</var>.context;</pre>
-
-<h3 id="Value">Value</h3>
-
-<p>A {{domxref("RequestContext")}} value.一个{{domxref("RequestContext")}}值。</p>
-
-<h2 id="Example例子">Example<font><font>例子</font></font></h2>
-
-<p>In the following snippet, we create a new request using the {{domxref("Request.Request()")}} constructor (for an image file in the same directory as the script), then save the request context in a variable:在以下代码段中,我们使用{{domxref("Request.Request()")}}}构造函数创建一个新请求(用于与脚本位于同一目录中的图像文件),然后将请求上下文保存在变量中:</p>
-
-<pre class="brush: js notranslate">var myRequest = new Request('flowers.jpg');
-var myContext = myRequest.context; // returns the empty string by default</pre>
-
-<h2 id="Browser_compatibility浏览器兼容性">Browser compatibility<font><font>浏览器兼容性</font></font></h2>
-
-<div class="hidden">The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <font><font>此页面上的兼容性表是根据结构化数据生成的。</font><font>如果您想提供数据,请查看</font></font><a href="https://github.com/mdn/browser-compat-data"><font><font>https://github.com/mdn/browser-compat-data</font></font></a><font><font>并向我们​​发送请求请求。</font></font> and send us a pull request.</div>
-
-<p>{{Compat("api.Request.context")}}</p>
-
-<h2 id="更多">更多</h2>
-
-<ul>
- <li><a href="/en-US/docs/Web/API/ServiceWorker_API">ServiceWorker API</a></li>
- <li><a href="/en-US/docs/Web/HTTP/Access_control_CORS">HTTP access control (CORS)</a></li>
- <li><a href="/en-US/docs/Web/HTTP">HTTP</a></li>
-</ul>