I created a file called "page.php" with the below code.
<!DOCTYPE HTML>
<html>
<body>
<?php
require form.php ;
?>
<a href="#" onclick="call_popup( form_container )">Click this link!</a>
</body>
</html>
此外,我还创建了另一个题为“格式.php”的文件,其编号如下:
<script type="text/javascript">
function call_popup (container_id) {
var id= document.getElementById(container_id);
alert(id);
}
</script>
<div id="form_container">
<form>
<input type="text" />
<input type="button" value="submit" />
</form>
</div>
我试图在“第.php页”中称呼“欢迎(container_id)”功能,“form.php”。 当我点击“Click thisLink”时,它给出了一个错误的话:-popup(表格_container )
。
我在哪里错了?