如何在html文件中将脚本实现为按钮?

时间:2012-12-11 17:42:53

标签: javascript button

我有一个可在Firebug控制台中运行的操作脚本,但我想使用html按钮启动它。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

如果要访问其他框架中的属性,可以使用类似的模式:

// This is our frame 1
function doSomething() {
    // ...
}

// This is our frame 2
parent.frames[0].doSomething();