このコードを見てください:
var foo = '<iframe width="560" height="315" src="http://www.youtube.com/embed/A175-KHvfy4" frameborder="0" allowfullscreen></iframe>';
foo = $(foo); // turned into jquery object
alert( foo.html() ); // alerts nothing
alert( foo[0] ); // alerts [Object HTMLIFRAMELEMENT] but how can I get the actual iframe code as a string?
では、jquery オブジェクトから iframe コードを取得するにはどうすればよいでしょうか。
私は文字通りこれが欲しい:
<iframe width="560" height="315" src="http://www.youtube.com/embed/A175-KHvfy4" frameborder="0" allowfullscreen></iframe>
元の変数にアクセスせずに。