返回介绍

Application.ExternalEval 外部运行

发布于 2019-12-18 15:37:18 字数 1067 浏览 1127 评论 0 收藏 0

JavaScript => static function ExternalEval(script: string): void;
C# => static void ExternalEval(string script);

Description 描述

Evaluates script snippet in the containing web page (Web Player only).

调用包含在网页中的片段脚本函数(只用于Web Player)。

This will execute JavaScript snippet script in the web page that contains the web player.

这将执行包含在网页中JavaScript片段script。

JavaScript:

	// Navigates to the previous page
	Application.ExternalEval ("history.back()");

C#:

using UnityEngine;
using System.Collections;
 
public class ExampleClass : MonoBehaviour {
    void Example() {
        Application.ExternalEval("history.back()");
    }
}

See Also: Webplayer and Browser Communication, Application.ExternalCall.

Application

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文