所以我的问题是我必须点击嵌套在html页面中的两个Frames中的元素。我尝试过以下操作,但在运行该行时继续var custom_template = [
function user_id(h, row) {
return row.id;
},
function user_name(h, row) {
return row.name;
},
function created_at(h, row) {
return row.created_at;
}
];
custom_template.forEach(
item => console.log(item(1, {
id: 1,
name: "test",
created_at: new Date()
})));
:
"run-time error '-2147352319'
这里是完整的代码:
Set iframedocy = iframedoc.Frames("catalogo")
这里是html代码的相关部分