猿问

html的button点击触发PHP的方法怎么实现?

我有一个.html文件:

<!DOCTYPE html><html lang="en"><head>
    <meta charset="UTF-8">
    <title>test03</title></head><body><button>
    test03按钮点击</button>
    </body></html>

我可以在这个.html中写Php代码吗?如果不能,那么我想要button按钮点击触发一个php事件,请问怎么做呢?



慕神8447489
浏览 3657回答 2
2回答

慕尼黑8549860

你这个文件是html文件,不能够写php代码。要想在html代码中写php,需要把文件类型改为.php.触发一下php事件是指button点击,然后发动一个请求的意思吧?,简单给个demo,不知道能不能帮到你。$('button').click(function(){ &nbsp;&nbsp;&nbsp;&nbsp;$.post("test.php",&nbsp;{},&nbsp;function(data)&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;console.log(data); &nbsp;&nbsp;&nbsp;&nbsp;}); })

慕工程0101907

1.PHP没有事件,事件是前端的东西2.前端和后端运行在不同环境,无法产生任何关联,唯一的交互方式是通过网络请求3.百度 jquery ajax
随时随地看视频慕课网APP
我要回答