what are the “for” and “event” attributes of the script tag (Javascript,HTML)

后端 未结 4 1076
情歌与酒
情歌与酒 2020-12-31 02:26

In a web application I\'ve inherited at work which was written about 10 years ago I\'ve noticed the following code snippets repeatedly used:



        
4条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-31 03:14

    for attribute is for the element name in for attribute like for="element1" and event attribute is for event handling like even onclick, onmouseover etc for that elements.

    For example if you add Onclick event then onclick event works on element which name you entered in for attribute.

提交回复
热议问题