首页 > 代码库 > Xamarin使用笔记之WebView

Xamarin使用笔记之WebView

一、事件调用

1.Xamarin调用webview事件:

WebView展示的代码如下:

var htmlSource = new HtmlWebViewSource();htmlSource.Html = @"<html>                <head>                    <meta charset=‘UTF-8‘>                    <title></title>                    <script>                        function showMsg(msg){                            alert(‘hello ‘+msg);                        }                    </script>                </head>                <body>                    你好世界.                </body>                </html>";this.webview.Source = htmlSource;

调用核心代码:

this.wv.Eval("showMsg(‘王磊‘)");

效果如下:

 技术分享

 

2.webview调用Xamarin事件:

 //todo

Xamarin使用笔记之WebView