可以为 'div' 元素使用 'action' 属性吗?

Can you use the 'action' attribute for a 'div' element?

我的问题很直接也很简单。我正在学习节点 JS,我知道 'form' 元素有一个 'action' 属性。我只想知道即使 div 元素也有这样的属性...

否,action 属性仅适用于表单标签。 如果你想和表单中的动作一样,你可以使用<a href="https://www.websiteurl.com">Wrap div with this</a>。 如果你想传递像表单这样的动态值,你可以在 herf 后跟 url/?id=5 提供。 您也可以使用 javascript 通过向 div

提供 id 来实现
onClick="location.href='url-here'"