我有一个应用程序,我想要保存100%的iFrame内容。这也包括var if = $('#myiframe').contents().find("html").html();
标签(如果存在)。
我只找到了如何从该部分开始保存iFrame内容的解决方案。
<html>
然而,这并不好,因为我不知道该文件中是否始终是HTML标签。此外,这种方法的第二个问题是它没有返回let attachment = NSTextAttachment()
attachment.image = UIImage(named: "yourIcon.png")
let attachmentString = NSAttributedString(attachment: attachment)
let myString = NSMutableAttributedString(string: price)
myString.appendAttributedString(attachmentString)
label.attributedText = myString
public void SetLeftDrawable(UIImage image){
var attachment = new NSTextAttachment();
attachment.Image = image;
var attachmentString = new
NSAttributedString(attachment,null); // this method take string not NSTextAttachment
}
标签。
我需要一些功能,我可以毫无理由地返回iFrame中的所有内容。
知道如何实现这个目标吗?
答案 0 :(得分:0)
我终于通过以下方式找到了解决方案:
ACK