我有一个HTML页面,其中我使用PHP进行数据库连接,我也想使用javascript的onchange事件复选框。如何链接php文件和jsp文件?请提出任何解决方案。
答案 0 :(得分:0)
好的,我认为你的意思是JS而不是JSP。如果是这样,这就是你需要做的事情
在PHP文件中添加以下代码。例如index.php
<html>
<head>
<!-- app.js will contain your javascript with the checkbox logic you want to add -->
<script type="text/javascript" src="app.js"></script>
<head>
<body>
<form action="./index.php">
<!-- form elements here -->
</form>
</body>
</html>
<?php
// Your form submission logic and database connectivity code will come here
?>
请告诉我这是否是您想要实现的目标。