苏飞论坛

标题: C# 执行javascript 怎么获取document对象 [打印本页]

作者: atfeel    时间: 2016-3-26 12:25
标题: C# 执行javascript 怎么获取document对象
[C#] 纯文本查看 复制代码

           Type type = Type.GetTypeFromProgID("ScriptControl");//获取脚本对象
            object obj = Activator.CreateInstance(type);//Type
            type.InvokeMember("Language", BindingFlags.SetProperty, null, obj, new object[] { "JScript" }); //设置语言类型

           string resultStr = "";
            try
            {
                type.InvokeMember("AddCode", BindingFlags.InvokeMethod, null, obj, new object[] {"function aa(){return document;}"});//添加JS代码 strJs.Replace("window","this")
                resultStr = type.InvokeMember("Eval", BindingFlags.InvokeMethod, null, obj, new object[] { "aa();"}).ToString();//执行JS
            }
            catch (TargetInvocationException targetEx)
            {
                if (targetEx.InnerException != null)
                {
                    throw targetEx.InnerException;
                }
            }


提示document未定义,怎么获取document,又怎么添加到成员里


作者: daekow    时间: 2016-3-31 13:38
需要修改JS代码,因为是ScriptControl执行。所以JS中是没有window的。自然也不会有document,当你访问就会是未定义。解决办法可以自定义变量var document = {};或者删掉document相关JS代码,用其它方式实现相同功能。
作者: atfeel    时间: 2016-4-7 22:03
daekow 发表于 2016-3-31 13:38
需要修改JS代码,因为是ScriptControl执行。所以JS中是没有window的。自然也不会有document,当你访问就会 ...

谢谢




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4