hx-post
hx-post
属性会导致元素向指定 URL 发送一个 POST
请求,并将返回的 HTML 使用交换策略替换到 DOM 中。
<button hx-post="/account/enable" hx-target="body">
Enable Your Account
</button>
此示例将导致 button
向 /account/enable
发送一个 POST
请求,并将返回的 HTML 替换到 body
的 innerHTML
中。
hx-post
属性不会被继承。