Can multiple HTML elements receive focus at the same time?
问题 I'm a coding a JavaScript reporting component, that requires multiple LI's i.e. lists to be selected collectively as a bunch with visual feedback. I'm thinking of adapting the onfocus event. Is it possible for multiple HTML elements to receive focus at the same time? Not inputs, but DIVs, so I don't need the cursor. I just want several DIVs to be "selected" separately from others, colored differently to simulate multiple item selection. 回答1: No, you can only focus on one element at a time.