标签: javascript button
我有一个可在Firebug控制台中运行的操作脚本,但我想使用html按钮启动它。
我该怎么做?
答案 0 :(得分:0)
如果要访问其他框架中的属性,可以使用类似的模式:
// This is our frame 1 function doSomething() { // ... } // This is our frame 2 parent.frames[0].doSomething();