提供一個在 Safari 環境中查看目前 HTML
原始碼的方式。原文使用的是
BBEdit,不過,稍為改一下,也可以使用
TextEdit。以下這段程式碼,可存在
~/Library/Scripts/Applications/Safari
便可從 Scripts Menu 執行,相當方便。
---8<---
global jsCode
global htmlSource
set jsCode to "document.documentElement.outerHTML"
tell application "Safari"
set htmlSource to (do JavaScript jsCode in front document)
end tell
tell application "TextEdit"
activate
make new document
set text of front document to htmlSource
end tell
--->8---