javascript - After multiple buttons are clicked to display different content, how can the content be displayed once and the content clicked on other buttons be hidden?
巴扎黑
巴扎黑 2017-07-05 11:08:05
0
4
1144


The airport partition is a bunch of buttons. I want to realize that when I click on Jiangsu, I only display Jiangsu. I don’t want the content of other buttons to be clicked - for example. Anhui is displayed.

Currently, I add a click event to each button, and then display the place name; but after the first click, it will always be displayed on the map,
The following is an example of a button. . Please tell me how to make it only display once when clicked; other content is hidden
$(".bnt-ShanDong").on('click', function () {

// 百度地图API功能
var initPoint = new BMap.Point(117.215278, 36.8569444);
map.centerAndZoom(initPoint, 8);
var myIcon = new BMap.Icon("../images/marker.png", new BMap.Size(32, 32));
var marker = new BMap.Marker(initPoint, { icon: myIcon });  // 创建标注
map.addOverlay(marker);
//marker.setAnimation(BMAP_ANIMATION_BOUNCE);
var label = new BMap.Label("山东分局", { offset: new BMap.Size(30, 5) });
label.setStyle({
    color: "#fff",
    fontSize: "12px",
    backgroundColor: "0.05",
    border: "0",
    height: "20px",
    lineHeight: "20px",
    fontFamily: "微软雅黑"
});
marker.setLabel(label);

})

巴扎黑
巴扎黑

reply all(4)
淡淡烟草味

The simplest way is to hide all regions every time a click event is triggered, then determine the current region based on this currently clicked and then display the current region

Peter_Zhu

First, you can add a unified class to all buttons, such as btn-test, and then add a custom attribute to each button, such as data-name, and put this button on each one to represent which branch, and then give it to all Such buttons are uniformly added to monitor, and the value of data-name is used to determine which one is clicked, and then all icons on the map are deleted first, and then only the clicked one is displayed:

$('.btn-test').click(function(){
    \第一步先删除所属分局的图标
    \然后显示点击的按钮对应的图标
    switch(this.data('name')){
        case "山东分局":
            \.显示山东分局对应的图标
        break;
        \...
    }
})
巴扎黑

This is similar to the three-level linkage idea. Click any button to clear the map content first, and then transfer the corresponding content according to this

小葫芦

The click event passes in an ID. Each button has its own specific ID.
Hide all points before creating them.
And determine whether your ID point exists.

 存在再将这个点的状态更改为显示  
 不存在  创建的新的点并把ID当属性写入新创建点
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!