iMacros 检查元素并删除页面代码

iMacros inspect element and delete page code

大家早上好 想帮忙创建一个更宏的代码 不能 我发现我必须通过 imacro 和这个命令一起使用 javascript

  URL GOTO = javascript:

我想知道我使用哪个命令 javacript 取名字 'Display: none;'

完整代码如下

   <Textarea id = "g-recaptcha-response" name = "g-recaptcha-response" class = "g-recaptcha-response" style = "width: 250px; height: 40px; border: 1px solid # c1c1c1; margin: 10px 25px; padding: 0px; resize: none; display: none; "> </ textarea>

更多我只想删除显示:none;代码

感谢帮助

您也可以尝试以下线路之一:

URL GOTO=javascript:{document.getElementById("g-recaptcha-response").style="display:<SP>block";undefined;}
URL GOTO=javascript:{document.getElementsByName("g-recaptcha-response")[0].style="display:<SP>block";undefined;}
URL GOTO=javascript:{document.getElementsByClassName("g-recaptcha-response")[0].style="display:<SP>block";undefined;}

我没有更多的变体。