我在我單獨的js文件中調用了一個函數hello()。訪問js中的函數
在我的網頁我有這個js:
<script type='text/javascript'>//do hello fnc</script>
我怎樣才能獲得在頁面腳本中調用我的主要JS功能文件?
我在我單獨的js文件中調用了一個函數hello()。訪問js中的函數
在我的網頁我有這個js:
<script type='text/javascript'>//do hello fnc</script>
我怎樣才能獲得在頁面腳本中調用我的主要JS功能文件?
在之前的其他腳本標記的src
屬性中稱之爲,其中涉及其在此腳本中的任何功能。
<script type='text/javascript' src='main.js'></script>
<script type='text/javascript'>
hello();
// Anything defined in previously included js files like main.js
// is now available, as well as anything defined on this page.
</script>
作爲旁註'type ='text/javascript''不再是必要的 – fcalderan
首先加載外部文件並調用函數:
<script src=external.js></script>
<script>
hello();
</script>
你只需要包括外部js文件:
<script type="text/javascript" src="MyOtherFile.js"></script>
然後只要在你的代碼要呼叫功能:
<script type="text/javascript">hello();</script>
頁面上什麼..? – Alnitak