wpf的webbrowser与javascript交互
Posted 马肯尼煤牙巴骨
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了wpf的webbrowser与javascript交互相关的知识,希望对你有一定的参考价值。
JS调用C#代码
html代码:
<button onclick="window.external.Test(‘called from script code‘)"> call client code from script code </button>
WPF代码中的C#代码:
public void Test(String message) { MessageBox.Show(message, "client code"); }
WPF和javascript之间的通信需要完全信任,因此您需要添加以下代码:
[PermissionSet(SecurityAction.Demand, Name = "FullTrust")] [ComVisible(true)] public class MainWindow { public void Test(String message) { MessageBox.Show(message, "client code"); } }
也经常这么干
//webbrowser设置一个脚本回调的上下文
mywebbrowser.objectForScription = nwe scriptCallBackContext(); [PermissionSet(SecurityAction.Demand, Name = "FullTrust")] [ComVisible(true)] public calss scriptCallBackContext { public void Test(String message) { MessageBox.Show(message, "client code"); } }
c#调用 JS方法
private void Window_Loaded(object sender, RoutedEventArgs e) { string curdir = Directory.GetCurrentDirectory(); webBrowser.Navigate(String.Format("file:///{0}/test.html", curdir)); webBrowser.LoadCompleted += (ss, ee) => { var jsCode = "fillData(‘data...‘);"; dynamic doc = webBrowser.Document; webBrowser.InvokeScript("execScript", new Object[] { jsCode, "JavaScript" }); }; }
myscripts.js:
function fillData(data) { //document.getElementById("uname").value = data; var oVDiv = document.getElementById("uname"); //oVDiv.setAttribute("vaue", data); oVDiv.value = data; //oVDiv.value = data; //document.write(data); }
以上是关于wpf的webbrowser与javascript交互的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 WPF WebBrowser 覆盖网页上的 btnSubmit_onclick javascript 函数?
在 C# Webbrowser 控件 WPF 中从 Javascript 获取返回值
如何通过 MVVM 在 WPF WebBrowser 控件上使用 Javascript
c#带有Highchart的WPF Webbrowser,来自外部源的Javascript不起作用“此页面上的脚本中发生错误”