以下行entire page
中的定义是什么?
当通过 PHP 的 include() 或 require() 函数包含整个页面时,请确保将该脚本代码放在
<body>
标签内而不是 . 内<head>
,因为从标签内调用 jQuery 脚本文件由于某种原因不起作用。
我在设置 jQuery 代码时遇到了问题。但是,我设法通过将其放入其中HEAD
并使用以下代码来使其工作
#1 代码
$(document).ready(function(){
--- code here----
});
我还没有设法让任何功能正常工作。我在代码 #1 的内部和外部都有它们。下面是一个例子。
#2 不工作的代码
function notEmpty() {
//put this in a function and call it when the user tries to submit
var tags = document.getElementById('tags').value;
if(tags == '' || tags == null) {
alert('Please enter one or more tags');
return false;
}
return true;
}
我使用 PHP 在 index.php 中通过以下代码包含标签 HTML、HEAD、/HEAD 和 BODY。
#3 获取 HTML、HEAD 和 body 标签的代码
include ( './official_content/html_head_body.php' );