我正在尝试使用Qt4的WebKit端口/实现编写一个简单的日志查看器.我的
HTML代码如下所示:
更具体地说,我试图找出如何调用在< script>中定义的add_message()函数.来自我的C代码的HTML文档中的部分.
@H_502_6@// Doesn't work: QWebElement targetElement = chatView->page()->mainFrame()->findFirstElement("head").firstChild("script"); // Function is not included,either... qDebug() << targetElement.tagName() << targetElement.functions(); // The ultimate attempt in calling the function anyway: QVariant functionResult = targetElement.callFunction("add_message");