是否可以使用 Imacros 从网站中删除属性
is it possible to remove attribute from website with Imacros
我需要从名称为 readonly="readonly
" 的输入属性中删除,是否可以使用 Imacros 来完成?
尝试这样的事情:
SET myInputId "inputid"
URL GOTO=javascript:{document.getElementById('{{myInputId}}').removeAttribute('readonly');}
我需要从名称为 readonly="readonly
" 的输入属性中删除,是否可以使用 Imacros 来完成?
尝试这样的事情:
SET myInputId "inputid"
URL GOTO=javascript:{document.getElementById('{{myInputId}}').removeAttribute('readonly');}