无法调用javascript函数fome C#webview windows phone 8.1应用程序

无法调用javascript函数fome C#webview windows phone 8.1应用程序,c#,windows,webview,windows-phone-8.1,windows-8.1,C#,Windows,Webview,Windows Phone 8.1,Windows 8.1,我无法从我的主页触发js功能。我想问题是我的一个html页面有多个js文件 我的主页代码是 WebViewControl.InvokeScript("NativeHook.getContactListCb", new[] { finalstring }); 我的HTML页面代码 <html> <head> <...... </head> <body> <script type="text/javascript"

我无法从我的主页触发js功能。我想问题是我的一个html页面有多个js文件

我的主页代码是

 WebViewControl.InvokeScript("NativeHook.getContactListCb", new[] { finalstring });
我的HTML页面代码

<html>
<head>

    <......
</head>
<body>

    <script type="text/javascript" src="../../core/js/UrlUtils.js"></script>
    <script type="text/javascript" src="../../core/js/NativeHook.js"></script>
    <script type="text/javascript" src="../../core/js/NetworkManager.js"></script>...</body>
有人能在这个问题上寻求帮助吗?提前谢谢

function getContactListCb(str) {
    alert(str);

}