我有一个 html 代码,其中有两个 javascript。我想将 1 个 javascript 的功能调用到另一个中。下面给出的是我的javascript的结构。
<html>
<head>
<script>
function a()
{
//function code
this.parent["asd"].b(); //problem in dis line
}
</script>
<body>
<script>
var asd= new Asd();
function b()
{
//function code here
}
</script>
</body>
</html>
当我在本地或从 Web 服务器使用它时,它工作正常。但是,如果我在我的 facebook 应用程序中上传此页面,则父类会指向其他地方,因为它位于 iframe 中。如何解决它。有没有其他方法可以调用该函数。