我有以下 HTML 代码
<a href="http://www.google.com">Google</a>
当我点击链接时,我希望我的字符串包含下面的完整 HTML 代码
<a href="http://www.google.com">Google</a>
我尝试使用这种方法,但我只能获取文本“Google”,无法获取锚代码。
$('#frame').contents().find('body').on("click", "a", function () {
var string = $(this).html();
alert(string);
});
Google
仅在需要时才发出字符串警报<a href="http://www.google.com">Google</a>
。