この方法で 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() がありますが、機能しません。
何か案が?