我有以下代码:
<script src="jquery-1.10.2.min.js"></script>
<script>
$('#year li').click(function() {
var text = $(this).text();
//alert('text is ' + text);
$.post("B.php", { text: text }, function(return_data, txtStatus, jqXHR) {
$('#result').html(return_data);
});
$.post("C.php", { text: text }, function(return_data, txtStatus, jqXHR) {
$('#subresult').html(return_data);
});
event.preventDefault() ;
});
</script>
它写在html的body标签内。是否可以调用一个名为initialize()的js函数,该函数写在html页面的head标签内?如果是的话怎么样?
初始化代码()
<script src="https://maps.googleapis.com/maps/api/js?sensor=false&libraries=visualization">
</script>
<script>
var map;
function initialize() {
var mapOptions = {
zoom: 5,
center: new google.maps.LatLng(2.8,-187.3),
mapTypeId: google.maps.MapTypeId.TERRAIN
};
map = new google.maps.Map(document.getElementById('map_canvas'),
mapOptions);
var script = document.createElement('script');
script.src = 'geojson';
document.getElementsByTagName('head')[0].appendChild(script);
}
window.eqfeed_callback = function(results) {
for (var i = 0; i < results.features.length; i++) {
var coords = results.features[i].geometry.coordinates;
var latLng = new google.maps.LatLng(coords[1],coords[0]);
var marker = new google.maps.Marker({
position: latLng,
map: map
});
}
}
</script>
geojson是一个本地文件,最初只包含click事件,包含各种位置的geojson格式值
答案 0 :(得分:0)
是否可以调用一个名为initialize()的js函数,该函数写在html页面的head标签内?
是
若是,如何?
假设它是一个全局函数:
initialize();
页面中的所有脚本都放在一个大的命名空间中。除非将它们包装在作用域函数中,否则各个脚本不会相互隔离。所以:
<head>
<!-- ... -->
<script>
function initialize() {
alert("initialize!");
}
</script>
</head>
<body>
<script>
initialize();
</script>
<!-- ... -->
</body>
</html>
......工作正常。 (无论脚本是内联还是引用外部.js
文件都无关紧要。)