在Javascript中使用隐藏字段值

在Javascript中使用隐藏字段值

本文介绍了在Javascript中使用隐藏字段值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 在我的代码中,我想将区号替换为隐藏字段。 < script type = text / javascript src = http://maps.googleapis.com/maps/api/js?sensor=false\"></script> < script type = text / javascript> function InitializeMap() { var latlng = new google.maps.LatLng(-34。 397 , 150 . 644 ); var myOptions = { zoom: 8 , center: latlng, mapTypeId:google.maps.MapTypeId.ROADMAP }; var map = new google.maps。 Map ( document .getElementById( map ),myOptions); } window .onload = InitializeMap; < / script> < h2>创建您的第一个Google 地图演示:< / h2 > < div id = map style = width:304px; top: 68px;左:172px;位置:绝对;高度:238px> < / div > 解决方案 In my code I would like to replace the area code to a hidden field.<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script><script type ="text/javascript"> function InitializeMap() { var latlng = new google.maps.LatLng(-34.397, 150.644); var myOptions = { zoom: 8, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP }; var map = new google.maps.Map(document.getElementById("map"), myOptions); } window.onload = InitializeMap;</script><h2>Creating Your First Google Map Demo:</h2><div id ="map" style="width: 304px; top: 68px; left: 172px; position: absolute; height: 238px"></div> 解决方案 这篇关于在Javascript中使用隐藏字段值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-22 23:47