gpt4 book ai didi

javascript - Wordpress:我的 JS 文件没有执行任何代码,也没有返回 404 错误

转载 作者:行者123 更新时间:2023-11-29 14:47:45 25 4
gpt4 key购买 nike

这是我的 jQuery 代码:

jQuery(document).ready(function() {
var $window = jQuery(window);

console.log("Pre-page height: " + $window.height());
jQuery('.main-content .home-block').height($window.height());

$window.on('resize', function(){
console.log("Resize event height: " + $window.height());
jQuery('.main-content .home-block').height($window.height());
});
});

这是我当前的 <head>代码:

  <head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php cs_wp_title(); ?></title>
<?php if( ! cs_get_option( 'non_responsive' ) ) { ?>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<?php } else { ?>
<meta name="viewport" content="width=1200">
<?php } ?>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js" />
<!-- Start of imported scripts -->
<script type="text/javascript" src="/js/customjs/main.js" />
<script type="text/javascript" src="/js/panelsnap/jquery.panelsnap.js" />
<!-- End of imported scripts -->
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<?php if ( is_search() || is_404() ) { echo '<meta name="robots" content="noindex, nofollow" />'; } ?>
<?php if ( cs_get_option( 'favicon' ) ) { echo '<link rel="shortcut icon" href="'. cs_get_option( 'favicon' ) .'" />'; } ?>
<?php wp_head(); ?>
</head>

我的控制台很干净,没有可见的错误。我的页面上也没有发生任何奇怪的事情。这里有什么问题?

最佳答案

好吧,这是一个很好的教训:

始终检查您的 jQuery CDN。

它不工作。一个普通的 console.logalert 给了我一个响应,但是任何带有 jQ​​uery 选择器的东西都会出错。

我从 jQuery CDN 切换过来:

<script type="text/javascript" src="http://code.jquery.com/jquery-2.1.4.js" />

到谷歌CDN

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>

它开始工作了。

关于javascript - Wordpress:我的 JS 文件没有执行任何代码,也没有返回 404 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30506141/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com