我在Visual Studio 2013中的一个chtml文件中有一些JS。我似乎无法弄清楚如何将它放入VS中自己的JS文件中。我该如何设置
<script type="text/javascript"
src="https://maps.googleapis.com/maps/api/js?key=12345&sensor=false">
</script>
进入自己的.js文件?
然后我将如何放置函数
<script type="text/javascript">
function initialize() {
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8
};
var map = new google.maps.Map(document.getElementById("map-canvas"),
mapOptions);
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
进入自己的档案? 为了清晰起见,我正试图将它们从html文件中删除
答案 0 :(得分:1)
首先,使用Add > New Item
添加一个新文件并选择一个JavaScript文件(在新项目对话框中可以称为JScript。
例如,将其称为map.js
。
然后添加一个脚本标记,这样:
<script src="https://maps.googleapis.com/maps/api/js?key=12345&sensor=false"></script>
<script src="map.js"></script>
如果您累积了一些脚本,您可能希望在.NET中使用捆绑功能 - 但这适用于您的小代码段。