我需要保存以下代码的内容:
“ ”;
在jQuery中,我想要的是获取“ src = info / info_template”中的html并将其保存在变量中,无论是HTML还是文本,我都不在乎。
我希望有人能帮助我。谢谢。
答案 0 :(得分:0)
您可以使用jQuery的src
方法访问.attr()
的值。
Here's a fiddle.
// Storing the src as a variable here.
var iframeSrc = $('iframe').attr('src');
//adding the above variable to "append-here" here
$('#append-here').text(iframeSrc);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<iframe src="https://stackoverflow.com">
</iframe>
<div id="append-here">
</div>