因此,在浏览了 google 和 stackoverflow 一段时间后,我发现的大多数资源都是错误的,包括 jQuery,我将其正确包含在内。
我的标题中有这个:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php wp_head(); ?>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title>
<?php bloginfo('name'); ?>
</title>
<link href="<?php echo home_url(); ?>/css/styles.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
alert("Hey");
});
}
alert("hello");
还有我需要的一切。当我拿出准备好的文档时,它会提醒你好,但是当文档准备好时它也不会提醒。我以前从未使用 jQuery 遇到过这个问题。
任何帮助,将不胜感激。