【问题标题】:problem with asp.net conrol binding in javascriptjavascript中asp.net控制绑定的问题
【发布时间】:2011-05-18 22:52:09
【问题描述】:
<body onload="initialize()">
    <form id="form1" runat="server">
    <div id="map_canvas" style = "width:320px; height:480px">
    </div>
    <div>
        <asp:TextBox ID="address" runat="server"></asp:TextBox>
        <asp:Button Text="find" runat="server" OnClientClick="codeAddress()" />
    </div>
    </form>
</body>

这是我的javascript:

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
    <script type="text/javascript">
        var geocoder;
        var map;
        function initialize() {
            geocoder = new google.maps.Geocoder();
            var latlng = new google.maps.LatLng(-34.397, 150.644);
            var myOptions = {
                zoom: 8,
                center: latlng,
                mapTypeId: google.maps.MapTypeId.ROADMAP
            }
            map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
        }
        function codeAddress() {
            var address = document.getElementById("<%= address.ClientID %>").value;
            geocoder.geocode({ 'address': address }, function (results, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    map.setCenter(results[0].geometry.location);
                    var marker = new google.maps.Marker({
                        map: map,
                        position: results[0].geometry.location
                    });
                } else {
                    alert("Geocode was not successful for the following reason: " + status);
                }
            });
        }
    </script>

codeAddress() 函数根本不起作用! 有什么问题?

【问题讨论】:

  • not working at all 是什么意思?你有没有在这个函数中设置断点? (IE-Developer-Toolbar/Firebug)
  • 是的,它没有达到功能!
  • 现在显示Unable to get value of the property 'offsetWidth': object is null or undefined
  • @Tim 它正在跳过codeAddress 函数中的geocoder.geocode()
  • @alex:我没有使用 google 的地理编码 api 的经验,也没有看到任何明显的错误或错字。但也许herehere 是有趣的东西。编辑:我明白了,第二个链接是您获取代码的地方;)

标签: javascript binding asp.net-controls google-geocoder


【解决方案1】:

试试……

document.getElementById("<%= address.ClientID %>")

改为:

document.getElementById("address").value;

【讨论】:

  • 它是一个asp控件,所以我必须绑定它,否则运行时值会改变
  • 真的吗? (asp,不是 asp.net?)您使用的是母版页还是什么?否则,您可能会在控件上设置“clientID”属性,因为它与 ID 属性不同。
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-02-04
  • 1970-01-01
  • 2023-01-01
  • 2010-11-19
相关资源
最近更新 更多