我有复选框 html。
<label><input type="checkbox"><span>Air Conditioning</span></label>
<label><input type="checkbox"><span>Cable TV Service</span></label>
<label><input type="checkbox"><span>Private Bathroom</span></label>
我需要为每个复选框设置单独的值,因此我可以从所有复选框中获取这些值并存储在变量中。例如
<label><input type="checkbox" data="1"><span>Air Conditioning</span></label>
<label><input type="checkbox" data="2"><span>Cable TV Service</span></label>
<label><input type="checkbox" data="3"><span>Private Bathroom</span></label>
因此,如果选择了所有 3 个,我将需要我的变量作为
room_features = '1-2-3';
如果任何一个未选中,变量将更新为
room_features = '2-3';
因此,在复选框的每次更改时,都应更新变量。如果添加 data="1" 等是否适合复选框,我会感到困惑?当有单双引号时,我通常会为锚点做。