是否可以在現有IFrame的src屬性上執行內聯JavaScript代碼(執行一些邏輯並返回url的函數)?在iframe中執行內聯JavaScript代碼src attribut
當我嘗試的代碼,我得到的錯誤:未捕獲的ReferenceError:你好沒有定義
<!DOCTYPE html>
<html>
<head>
\t <title>title</title>
\t <script type="text/javascript">
\t \t var hello = function(src1){
// some logic goes here
\t \t \t return "www.mysite.com";
\t \t } \t
\t </script>
</head>
<body>
\t
\t <iframe width="400" height="400" src="javascript:hello()" > \t
\t </iframe>
\t
</body>
</html>
你必須設置src屬性的不同方式。 – 2015-03-13 17:05:39
我知道可以獲取iframe HTMLElement並動態設置其src。我正在尋找最小的方式來完成相同的任務。 – 2015-03-13 17:42:54