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 替换到 bodyinnerHTML 中。

注意事项