imacros从提取的html中删除了部分txt

时间:2015-08-13 19:34:50

标签: javascript iframe eval imacros

我正在创建一个宏,但我遇到了问题。

每次重新加载时,网站都会更改其iframe名称。所以我想获取iframe名称并将其放入变量中。问题是我不知道如何从提取的html中获取iframe名称

TAG POS=7 TYPE=iframe ATTR=ID:* EXTRACT=HTM

<iframe src="https://www.facebook.com/plugins/comments.php?api_key=271750421132&amp;channel_url=http%3A%2F%2Fstatic.ak.facebook.com%2Fconnect%2Fxd_arbiter%2F7tUlZKGPU61.js%3Fversion%3D41%23cb%3Df39559b33f3fe54%26domain%3Dwww.collegehumor.com%26origin%3Dhttp%253A%252F%252Fwww.collegehumor.com%252Ff2b6c86b5ce5e7%26relation%3Dparent.parent&amp;colorscheme=light&amp;href=http%3A%2F%2Fwww.collegehumor.com%2Ftoplist%2F6754891%2Fthe-biggest-pet-peeves&amp;locale=en_US&amp;mobile=false&amp;numposts=10&amp;order_by=social&amp;sdk=joey&amp;skin=light&amp;version=v2.0&amp;width=570" class="fb_ltr" title="Facebook Social Plugin" style="border: medium none; overflow: hidden; height: 2589px; width: 607px; outline: 1px solid blue;" scrolling="no" name="f17c627e8f47218" id="f31982b5a1b9c64"></iframe>

我只需要获取f31982b5a1b9c64的iframe ID。我对javascript知之甚少,所以我似乎无法解决这个问题。

1 个答案:

答案 0 :(得分:0)

如果要获取iframe名称,请添加此行:

SET frameName EVAL("'{{!EXTRACT}}'.match(/name="(\w*)"/)[1];")

或者这个抓住iframe ID:

SET frameId EVAL("'{{!EXTRACT}}'.match(/id="(\w*)"/)[1];")