blob: 77c20694999785fae0f8ae15a21b886e43b29aa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
---
title: Selection.toString()
slug: Web/API/Selection/toString
translation_of: Web/API/Selection/toString
---
<div>
<div>
<div>{{ ApiRef("DOM") }}{{SeeCompatTable}}</div>
</div>
</div>
<p>Метод <strong><code>Selection.toString()</code></strong> возвращает строку, содержащуюся в выделенном объекте, т.е. выделенный текст.</p>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>str</em> =<em> sel</em>.toString()
</pre>
<h3 id="Return_value">Return value</h3>
<ul>
<li><em><code>str</code></em> -- это строка, содержащаяся в выделении.</li>
</ul>
<h3 id="Parameters">Parameters</h3>
<p><em>None (отсутствуют).</em></p>
<h2 id="Description">Description</h2>
<p>Этот метод возвращает выделенный текст.</p>
<p>В <a href="en/JavaScript">JavaScript</a>, этот метод вызывается автоматически, когда функция, которой он передаётся, требует строку:</p>
<pre class="brush: js">alert(window.getSelection()) // What is called
alert(window.getSelection().toString()) // What is actually being effectively called.
</pre>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('HTML Editing', '#dom-selection-stringifier', 'Selection.toString()')}}</td>
<td>{{Spec2('HTML Editing')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li>{{domxref("Selection")}}, the interface it belongs to.</li>
</ul>
|