这是有效的HTML吗?

Mat*_*iby 4 html xhtml internet-explorer

<a href="/selection"><input type="button" class="big" value="Somewhere"></a>
Run Code Online (Sandbox Code Playgroud)

因为在IE中它没有点击....任何想法为什么..所有其他浏览器似乎很好

rjb*_*rjb 9

它是无效的HTML - <input>不能作为<a>元素的后代:

HTML Validator截图

资料来源:http://jsbin.com/iyuxeb

  • @Tamer:将`<a href="/selection"> ... </a>改为`<form action ="/ selection"method ="get"> ... </ form>`.将一个空表单提交给`/ selection`,然后将用户带到那里. (4认同)