我正在开发一个应用程序,它以这种方式在QWebView中加载本地html:
ui->webView->setUrl(QUrl("qrc:/index.html"));
页面正确加载但不是javascript。这里是html:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="utils.js"></script>
</head>
<body>
<input type="button" value="test" onclick="test_func();"/>
</body>
</html>
所以,在utils.js中我有test_func()但它不起作用。
有什么想法吗? 感谢。