gpt4 book ai didi

javascript - AppleScript:如何更改网站选项菜单的值?

转载 作者:行者123 更新时间:2023-11-29 15:19:27 24 4
gpt4 key购买 nike

我正在尝试通过 AppleScript 更改网站选项菜单的值。

当我运行时:

tell application "Safari"
activate
tell current tab of window 1
set changeValue to do JavaScript "document.getElementById('selected-ID').innerHTML;"
return changeValue
end tell
end tell

我得到的结果是:

<option value=\"1\">blabla1</option>
<option selected=\"\" value=\"2\">blabla2</option>
<option value=\"3\">blabla3</option>

现在我想将选择的选项更改为 value1。

谁能帮帮我。我真的很沮丧,没有任何效果

谢谢

马丁

最佳答案

您需要执行javascript 来更改选择元素的值。您应该在其中一个选择选项中将其设置为“值”参数的字符串。

tell application "Safari"
activate
tell current tab of window 1
do JavaScript "document.getElementById('selected-ID').value = '1';"
end tell
end tell

关于javascript - AppleScript:如何更改网站选项菜单的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45572075/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com