我有兩個腳本,在我的腦海區的負載分別是:合併2個腳本到1個文件
<script type="text/javascript">
var myDate = new Date();
var myStamp = ""+myDate.getDate()+myDate.getMonth()+myDate.getFullYear()+myDate.getHours()+myDate.getMinutes();
document.write('<script type="text/javascript" src="https://scriptlocation.com/js/script.js?' + myStamp + '"><\/script>');
</script>
<script type="text/javascript">
document.write('<script type="text/javascript" src=""https://scriptlocation.com/js/script2.js?'+SVNInfo.revision+'"><\/script>');
</script>
我理想的情況是,以合併這兩個成1 JavaScript文件,所以我想盡量創造一個新的文件,其中包含以下內容:
var myDate = new Date();
var myStamp = ""+myDate.getDate()+myDate.getMonth()+myDate.getFullYear()+myDate.getHours()+myDate.getMinutes();
document.write('<script type="text/javascript" src="https://scriptlocation.com/js/script.js?' + myStamp + '"><\/script>');
document.write('<script type="text/javascript" src=""https://scriptlocation.com/js/script2.js?'+SVNInfo.revision+'"><\/script>');
但是,這似乎不工作,因爲該腳本未被正確加載。我是否需要重寫/更改某些內容才能使其正常工作?
一些建議將不勝感激。
什麼是錯誤? –
SVNInfo.revision來了嗎? –
可能不起作用,因爲'document.write'是** evil **。 –