我正在开发一个应用程序,它以这种方式在 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() 但它不起作用。
任何想法?