0
<html><head></head><body><input type="text" uuid="213123dfh"></body></html>
私たちの問題は、出力のinputタグが自己終了ではないということですが出力するHTMLパーサ
QString html = "<img src=\"input_213123dfh\" />";
QWebFrame* frame = htmlProcessor.mainFrame();
frame->setHtml(html);
QWebElementCollection inputs = frame->documentElement().findAll("img[src*=input_]");
foreach (QWebElement input, inputs) {
input.setOuterXml(QString("<input type=\"text\" uuid=\"%1\" />").arg(input.attribute("src").section("_",1,1)));
}
html = frame->toHtml();
としてQWebFrameを乱用。自己閉じタグでhtmlを取得することは可能ですか?