Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <h1>getElementById()とinnerHTML</h1>
<div id="box1"></div>

<h1>getElementsByClassName()</h1>
<div class="box2"></div>
<div class="box2"></div>

<h1>querySelectorAll()</h1>
<div id="box3">
	<p></p>
	<div></div>
	<p></p>
</div>
              
            
!

CSS

              
                
              
            
!

JS

              
                // getElementByIdにID名を指定して要素を取得
var e_div1 = document.getElementById( "box1" );
//要素にテキストを追加します。
e_div1.innerHTML = "innerHTMLで文言追加";
e_div1.innerHTML += "<dl><dt>innerHTML</dt><dd>文言追加</dd></dl>";


// getElementsByClassNameにクラス名を指定して要素を取得
var e_div2 = document.getElementsByClassName( "box2" );

// 要素の最初に文言を追加
e_div2[0].innerHTML = "getElementsByClassNameを使って文言追加";

// ID名box3の直下にあるP要素を全て取得
var e_p = document.querySelectorAll( "#box3 > P" )
// 取得した要素の最後の要素に文言を追加する
e_p[e_p.length-1].innerHTML += 'querySelectorAllで文言追加';

// getElementByIdにID名を指定して要素を取得
var e_div10 = document.getElementById( "box10" );
// P要素を作成
var e_p = document.createElement( "p" );
// P要素に文字列を追加
e_p.innerHTML = "P要素を追加";
// box2に作成したP要素を追加
e_div10.appendChild( e_p );
// 結果をコンソールに出力
//console.log( e_div3 );


              
            
!
999px

Console