阅读量:0
在HTML表单中,可以通过<input>
或<button>
元素的formaction
属性来设置PHP action的值
- 使用
<input>
元素:
<form method="post"> <label for="name">姓名:</label> <input type="text" id="name" name="name" required> <input type="submit" value="提交" formaction="your_php_script.php"> </form>
- 使用
<button>
元素:
<form method="post"> <label for="name">姓名:</label> <input type="text" id="name" name="name" required> <button type="submit" formaction="your_php_script.php">提交</button> </form>
在这两个示例中,当用户点击提交按钮时,表单数据将被发送到your_php_script.php
文件进行处理。请确保将your_php_script.php
替换为实际的PHP脚本文件名。