[javascript] text()、html() でコンテンツを取得する
サンプルコード
$(“#btn1").click(function(){
alert(“Text: " + $(“#test").text());
});
$(“#btn2").click(function(){
alert(“HTML: " + $(“#test").html());
});
Coding Changes the World
サンプルコード
$(“#btn1").click(function(){
alert(“Text: " + $(“#test").text());
});
$(“#btn2").click(function(){
alert(“HTML: " + $(“#test").html());
});