我有一个复选框设置,应该添加和删除带有传单的图层.现在我无法取消选中复选框.
HTML:
<form action="">
<input type="checkbox" id="pointCheck" value="true">Points
<input type="checkbox" id="lineCheck">Lines
<input type="checkbox" id="polygonCheck">Polygons
</form>
Run Code Online (Sandbox Code Playgroud)
JavaScript的:
$(":checkbox").click(function(){
if($("#pointCheck").prop('checked', true)){
$.getJSON("../data/point.json").done(function(data){
addPoints(data);
console.log("hello");
});
}
else if($("#pointCheck").prop('checked', false)){
console.log("remove");
}
})
Run Code Online (Sandbox Code Playgroud) jquery ×1