在iframe中设置输入(没有id,class或name)值

时间:2018-02-27 16:29:22

标签: javascript html iframe

我需要为iframe内(深)定位的输入字段设置一个值。 此输入没有ID,名称或类。

Code extract

这可能吗?

我无法简单地添加ID等,因为代码来自外部来源: enter image description here

1 个答案:

答案 0 :(得分:0)

如果只有一个<input>元素,您可以通过标记名称来引用它。使用jQuery,你会写:

$("iframe#sq-postal-code").contents().find('input')

请注意,由于现代浏览器强制执行same origin policy,因此来自外部的网页可能会失败。

Source