Projet

Général

Profil

Paste
Télécharger (7,16 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / libraries / ckeditor-4.4.7-full / samples / jquery.html @ d69c481e

1 85ad3d82 Assos Assos
<!DOCTYPE html>
2
<!--
3 d69c481e Florent Torregrosa
Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
4 85ad3d82 Assos Assos
For licensing, see LICENSE.md or http://ckeditor.com/license
5
-->
6
<html>
7
<head>
8
        <meta charset="utf-8">
9
        <title>jQuery Adapter &mdash; CKEditor Sample</title>
10 d69c481e Florent Torregrosa
        <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
11 85ad3d82 Assos Assos
        <script src="../ckeditor.js"></script>
12
        <script src="../adapters/jquery.js"></script>
13
        <link href="sample.css" rel="stylesheet">
14
        <style>
15

16
                #editable
17
                {
18
                        padding: 10px;
19
                        float: left;
20
                }
21
22
        </style>
23
        <script>
24

25
                CKEDITOR.disableAutoInline = true;
26

27
                $( document ).ready( function() {
28
                        $( '#editor1' ).ckeditor(); // Use CKEDITOR.replace() if element is <textarea>.
29
                        $( '#editable' ).ckeditor(); // Use CKEDITOR.inline().
30
                } );
31

32
                function setValue() {
33
                        $( '#editor1' ).val( $( 'input#val' ).val() );
34
                }
35
36
        </script>
37
</head>
38
<body>
39
        <h1 class="samples">
40
                <a href="index.html" id="a-test">CKEditor Samples</a> &raquo; Create Editors with jQuery
41
        </h1>
42
        <form action="sample_posteddata.php" method="post">
43
                <div class="description">
44
                        <p>
45 d69c481e Florent Torregrosa
                                This sample shows how to use the <a href="http://docs.ckeditor.com/#!/guide/dev_jquery">jQuery adapter</a>.
46 85ad3d82 Assos Assos
                                Note that you have to include both CKEditor and jQuery scripts before including the adapter.
47
                        </p>
48 d69c481e Florent Torregrosa
49 85ad3d82 Assos Assos
<pre class="samples">
50
&lt;script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"&gt;&lt;/script&gt;
51
&lt;script src="/ckeditor/ckeditor.js"&gt;&lt;/script&gt;
52
&lt;script src="/ckeditor/adapters/jquery.js"&gt;&lt;/script&gt;
53
</pre>
54 d69c481e Florent Torregrosa
55
                        <p>Then you can replace HTML elements with a CKEditor instance using the <code>ckeditor()</code> method.</p>
56
57 85ad3d82 Assos Assos
<pre class="samples">
58
$( document ).ready( function() {
59
        $( 'textarea#editor1' ).ckeditor();
60
} );
61
</pre>
62
                </div>
63
64
                <h2 class="samples">Inline Example</h2>
65
66
                <div id="editable" contenteditable="true">
67
                        <p><img alt="Saturn V carrying Apollo 11" class="right" src="assets/sample.jpg"/><b>Apollo 11</b> was the spaceflight that landed the first humans, Americans <a href="http://en.wikipedia.org/wiki/Neil_Armstrong" title="Neil Armstrong">Neil Armstrong</a> and <a href="http://en.wikipedia.org/wiki/Buzz_Aldrin" title="Buzz Aldrin">Buzz Aldrin</a>, on the Moon on July 20, 1969, at 20:18 UTC. Armstrong became the first to step onto the lunar surface 6 hours later on July 21 at 02:56 UTC.</p>
68
                        <p>Armstrong spent about <s>three and a half</s> two and a half hours outside the spacecraft, Aldrin slightly less; and together they collected 47.5 pounds (21.5&nbsp;kg) of lunar material for return to Earth. A third member of the mission, <a href="http://en.wikipedia.org/wiki/Michael_Collins_(astronaut)" title="Michael Collins (astronaut)">Michael Collins</a>, piloted the <a href="http://en.wikipedia.org/wiki/Apollo_Command/Service_Module" title="Apollo Command/Service Module">command</a> spacecraft alone in lunar orbit until Armstrong and Aldrin returned to it for the trip back to Earth.
69
                        <p>Broadcast on live TV to a world-wide audience, Armstrong stepped onto the lunar surface and described the event as:</p>
70
                        <blockquote><p>One small step for [a] man, one giant leap for mankind.</p></blockquote> <p>Apollo 11 effectively ended the <a href="http://en.wikipedia.org/wiki/Space_Race" title="Space Race">Space Race</a> and fulfilled a national goal proposed in 1961 by the late U.S. President <a href="http://en.wikipedia.org/wiki/John_F._Kennedy" title="John F. Kennedy">John F. Kennedy</a> in a speech before the United States Congress:</p> <blockquote><p>[...] before this decade is out, of landing a man on the Moon and returning him safely to the Earth.</p></blockquote>
71
                </div>
72
73
                <br style="clear: both">
74
75 d69c481e Florent Torregrosa
                <h2 class="samples">Classic (iframe-based) Example</h2>
76 85ad3d82 Assos Assos
77
                <textarea cols="80" id="editor1" name="editor1" rows="10">
78
                        &lt;h2&gt;Technical details &lt;a id=&quot;tech-details&quot; name=&quot;tech-details&quot;&gt;&lt;/a&gt;&lt;/h2&gt; &lt;table align=&quot;right&quot; border=&quot;1&quot; bordercolor=&quot;#ccc&quot; cellpadding=&quot;5&quot; cellspacing=&quot;0&quot; style=&quot;border-collapse:collapse;margin:10px 0 10px 15px;&quot;&gt; &lt;caption&gt;&lt;strong&gt;Mission crew&lt;/strong&gt;&lt;/caption&gt; &lt;thead&gt; &lt;tr&gt; &lt;th scope=&quot;col&quot;&gt;Position&lt;/th&gt; &lt;th scope=&quot;col&quot;&gt;Astronaut&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;Commander&lt;/td&gt; &lt;td&gt;Neil A. Armstrong&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Command Module Pilot&lt;/td&gt; &lt;td&gt;Michael Collins&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Lunar Module Pilot&lt;/td&gt; &lt;td&gt;Edwin &amp;quot;Buzz&amp;quot; E. Aldrin, Jr.&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;p&gt;Launched by a &lt;strong&gt;Saturn V&lt;/strong&gt; rocket from &lt;a href=&quot;http://en.wikipedia.org/wiki/Kennedy_Space_Center&quot; title=&quot;Kennedy Space Center&quot;&gt;Kennedy Space Center&lt;/a&gt; in Merritt Island, Florida on July 16, Apollo 11 was the fifth manned mission of &lt;a href=&quot;http://en.wikipedia.org/wiki/NASA&quot; title=&quot;NASA&quot;&gt;NASA&lt;/a&gt;&amp;#39;s Apollo program. The Apollo spacecraft had three parts:&lt;/p&gt; &lt;ol&gt; &lt;li&gt;&lt;strong&gt;Command Module&lt;/strong&gt; with a cabin for the three astronauts which was the only part which landed back on Earth&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Service Module&lt;/strong&gt; which supported the Command Module with propulsion, electrical power, oxygen and water&lt;/li&gt; &lt;li&gt;&lt;strong&gt;Lunar Module&lt;/strong&gt; for landing on the Moon.&lt;/li&gt; &lt;/ol&gt; &lt;p&gt;After being sent to the Moon by the Saturn V&amp;#39;s upper stage, the astronauts separated the spacecraft from it and travelled for three days until they entered into lunar orbit. Armstrong and Aldrin then moved into the Lunar Module and landed in the &lt;a href=&quot;http://en.wikipedia.org/wiki/Mare_Tranquillitatis&quot; title=&quot;Mare Tranquillitatis&quot;&gt;Sea of Tranquility&lt;/a&gt;. They stayed a total of about 21 and a half hours on the lunar surface. After lifting off in the upper part of the Lunar Module and rejoining Collins in the Command Module, they returned to Earth and landed in the &lt;a href=&quot;http://en.wikipedia.org/wiki/Pacific_Ocean&quot; title=&quot;Pacific Ocean&quot;&gt;Pacific Ocean&lt;/a&gt; on July 24.&lt;/p&gt; &lt;hr/&gt; &lt;p style=&quot;text-align: right;&quot;&gt;&lt;small&gt;Source: &lt;a href=&quot;http://en.wikipedia.org/wiki/Apollo_11&quot;&gt;Wikipedia.org&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;
79
                </textarea>
80
81
                <p style="overflow: hidden">
82
                        <input style="float: left" type="submit" value="Submit">
83
                        <span style="float: right">
84
                                <input type="text" id="val" value="I'm using jQuery val()!" size="30">
85
                                <input onclick="setValue();" type="button" value="Set value">
86
                        </span>
87
                </p>
88
        </form>
89
        <div id="footer">
90
                <hr>
91
                <p>
92
                        CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
93
                </p>
94
                <p id="copy">
95 d69c481e Florent Torregrosa
                        Copyright &copy; 2003-2015, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
96 85ad3d82 Assos Assos
                        Knabben. All rights reserved.
97
                </p>
98
        </div>
99
</body>
100
</html>