对话框

对话框可以使用 hx-prompthx-confirm 属性触发。这些对话框由触发 AJAX 请求的用户交互触发,但只有在对话框被接受时才会发送请求。

<div>
  <button class="btn primary"
          hx-post="/submit"
          hx-prompt="请输入一个字符串"
          hx-confirm="您确定吗?"
          hx-target="#response">
    Prompt Submission
  </button>
  <div id="response"></div>
</div>

用户提供给提示对话框的值会通过 HX-Prompt 标头发送到服务器。在这种情况下,服务器只是简单地将用户输入回显。

用户输入了 <i>${response}</i>
Server Requests ↑ Show

🔗Demo