Application.ExternalEval 外部运行

static function ExternalEval (script : string) : void

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

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
	public void Awake() {
		Application.ExternalEval("history.back()");
	}
}
// Navigates to the previous page
//返回前一页
Application.ExternalEval ("history.back()");

参见:Application.ExternalCall.

最后修改:2011年7月20日 Wednesday 13:04

本脚本参考基于Unity 3.4.1f5

英文部分版权属©Unity公司所有,中文部分© Unity圣典 版权所有,未经许可,严禁转载 。