2015-11-04 63 views
0

我想做一個IMacros代碼單擊此網頁上的按鈕,但它不工作,因爲它可以找到按鈕,但實際上不會點擊它,我使用這個代碼:點擊這個按鈕使用IMacros

TAG POS=1 TYPE=a ATTR=TXT:Joined 

和按鈕的HTML是:

<a id="order_created_at" class="active" href="#top" onmousedown="unfollow.changeSortOrder('created_at', 'ASC');return false;">Joined <i class="icon-caret-down"></i></a> 

回答

0

我的建議是這樣的:

TAG POS=1 TYPE=A ATTR=ID:"order_created_at" 
URL GOTO=javascript:{window.document.getElementById("order_created_at").onmousedown();undefined;}