我有这个简单的html 标记:
<form id="form" action="lalala">
<input type="text" id="action"/> //a reserved property name id
<input type="submit" id="submit"/> //same here
</form>
但是 - 运行:
alert(document.getElementById('form').action);
警报
而不是应该的“拉拉拉”。
好像getElementById
没有直接访问's props
这是为什么 ?.....它实际上可能意味着我必须知道所有表单元素的道具(为了不向后代元素提供保留的道具ID)?