有一个网址www.example.com/page-1.php
。该页面具有称为make_circle
的功能。像这样使用:make_circle('10');
当我访问www.example.com/page-2.php
时,我希望它在make_circle('10');
上运行www.example.com/page-1.php
。这可能吗?
在www.example.com/page-2.php
上:
<iframe id="coolpage" src="www.example.com/page-1.php" style="width:100px;height:100px;border:0; border:none;"></iframe>
<!-- How do I run the make_circle function on page-1 while I am on page-2 -->