首頁 > web前端 > js教程 > 主體

您可以在標籤中同時包含內聯腳本和 SRC 屬性嗎?

Mary-Kate Olsen
發布: 2024-11-01 07:38:02
原創
136 人瀏覽過

Can you include both inline scripts and an SRC attribute in a  tag?

JavaScript: Inline Script with SRC Attribute

JavaScript inline scripts are commonly included using the

JavaScript inline scripts are commonly included using the

JavaScript inline scripts are commonly included using the at 標籤 commonly external script file. However, can inline scripts be defined within the same <script> tag?</script>

According to the HTML 4.01 Specification, the behavior of a <script> tag with both an inline script and a src the behavior of a <script> tag with both an inline script and a srctrib明確的:</script>

如果src 屬性未設置,用戶代理必須將元素的內容解釋為腳本。如果 src 有 URI 值,使用者代理程式必須忽略元素的內容並透過 URI 檢索腳本。

<code class="html"><script type='text/javascript' src='/path/to/script.js'></script></code>
登入後複製
這表示 <script> 標籤中的 src 屬性具有優先級,inline 腳本將被忽略。也就是說,以下是有效的 JavaScript 使用方式:<p><pre class="brush:php;toolbar:false"><code class="html"><script type='text/javascript' src='/path/to/script.js'> alert('Do some stuff here, using resources defined in script.js.'); </script>將外部腳本載入到頁面中,而無需執行任何inline 腳本。然而,以下用法是不正確的:

在此範例中,inline 腳本將被忽略,因為 src 屬性存在。要執行 inline 腳本,必須省略 src 屬性:<🎜><🎜>

以上是您可以在標籤中同時包含內聯腳本和 SRC 屬性嗎?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!