1
我正在通讀這本書「Beginning Javascript」。本書中的示例包括以下行:爲什麼jQuery源代碼在其他代碼之前關閉?
<script type = "text/javascript" src = "jquery-1.11.3.js"></script>
爲什麼要打開並立即關閉jQuery源代碼?它不需要保持開放運行jQuery代碼?
我正在通讀這本書「Beginning Javascript」。本書中的示例包括以下行:爲什麼jQuery源代碼在其他代碼之前關閉?
<script type = "text/javascript" src = "jquery-1.11.3.js"></script>
爲什麼要打開並立即關閉jQuery源代碼?它不需要保持開放運行jQuery代碼?
這只是包括jQuery庫,所以你可以使用它。你的實際代碼會放在它下面的另一個腳本標籤中。喜歡這個。
<div></div>
<script type="text/javascript" src="jquery-1.11.3.js"></script>
<script>
$('div').text('Hello World!');
</script>
這很有道理。非常感謝! – Saralyn