2016-08-19 26 views

答えて

0

を追加します。

$('#container').append('<p>Hello world!</p>'); 

別のものを使用insertAfter後に要素を挿入するには:

$('<p>Hello world!</p>').insertAfter('#some-other-element'); 
0

利用のjQueryの.append機能。あなたのコードは

$("p").append("Your Element"); 
+0

$(ドキュメント).ready(関数(){共有してください $)( }); });(}); $( "ボタン")をクリックしてください(function(){ $( "p")。 –

0

になります。append()を使用してください。

$("p").append("Element"); 
0

スクリプトを変更せずにthis..fulfilsあなたの条件を試してみてください:)

$(document).ready(function(){ 
 
    $("button").click(function(){ 
 
     $("p").after("Add Element"); 
 
    }); 
 
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<p> Sample Paragraph </p> 
 
<button>Sample button</button>

関連する問題