Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
564 views
in Technique[技术] by (71.8m points)

javascript - What are the historical reasons for excluding input[type='image'] from form.elements

Regarding HTML spec for form.elements there is a note on listed elements "excluding image buttons for historical reasons"

I can't seem to find what the historical reasons are.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

This is for compatibility with the DOM as implemented by Netscape and early versions of IE, aka "DOM level 0", in which image buttons were not considered form elements (despite clearly being input elements that the user could interact with) and therefore excluded from most form functionality. See this Bugzilla report.

In particular, in Netscape 4 their behavior was much more like that of regular image links (<a href="..."><img src="..."></a>) than in IE, such as adding a border similar to that of image links and not supporting event handlers at all, although IE had its own share of quirks as well especially when they were used as submit buttons. In general, image buttons have always been a mess, much of which stemmed from being largely underspecified prior to HTML 4 (and, frankly, even then). See Jukka K. Korpela's and Alan J. Flavell's write-ups on the subject.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...