0

当我右键单击标记时,我想显示一个 infoWindow。
infoWindow 必须根据值显示 4 个复选框。

google.maps.event.addListener(marker,"rightclick", function()
    { 
        html = "<table><tr><td>";
        if (value1==...) 
        {
            html = html + "<input type='checkbox' id='option1' checked>value1<br>";
        }
        else
        {
            html = html + "<input type='checkbox' id='option1'>value1<br>";    
        }
        if (value2==...) 
        {
            html = html + "<input type='checkbox' id='option2'checked>value2<br>";
        }
        else
        {
            html = html + "<input type='checkbox' id='option2' >value2<br>"; 
        }
        if (value3==...) 
        {
            html = html + "<input type='checkbox' id='option3' checked>value3<br>";
        }
        else
        {
            html = html + "<input type='checkbox' id='option3' >value3<br>";   
        }
        if (value4==...) 
        {
            html = html + "<input type='checkbox' id='option4' checked>value4<br>"; 
        }
        else
        {
            html = html + "<input type='checkbox' id='option4' >value4<br>"; 
        }
        html = html + "</td></tr></table>";
        marker.setContent(html)
        infoWindow.open(map,marker);    
    });

1)您是否看到使用 jquery 的更好实现,因为这段代码不优雅?
2)如果我点击复选框#N,如何修改对应的valueN的值?

4

1 回答 1

0

与此类似的东西

var 
 values = [],
 html = '';

for(i=1;i<n;i++) {
 html += '<input type="checkbox" id="option"'+i+'" '+(values[i] == 'something' ? 'checked' : '')+'> value '+i+'<br/>';
}
于 2013-09-23T17:26:07.543 回答