drymoeuka282427675 2011-06-12 17:11
浏览 50
已采纳

如何在Wordpress中处理JS和PHP脚本

Problem: The script listed below will only run if it's listed out on the page. If its enqueued then it fails. I assume this is because if its enqueued then the php is NOT processed, but I don't know enough to be sure.

Question Is there any way to call the script or is it just a fundamental requirement that any script containing php has to be listed on the page?

Thanks

<script type="text/javascript">
jQuery(document).ready(function() {
jQuery('#buttonLink').dialog({autoOpen: false});
var readerStatus="<?php echo $_COOKIE['readerStatus'];?>";

if (readerStatus=="tester")  
    {
    jQuery("#buttonLink").dialog('open');
    }
});
</script>
  • 写回答

2条回答 默认 最新

  • dongtan3306 2011-06-12 18:03
    关注

    You do not need to use PHP to read cookies, you can do this with javascript instead:

    <script type="text/javascript">
        /**
         * taken from
         *   http://www.w3schools.com/js/js_cookies.asp 
         * but instead you can opt for the jquery cookie
         * plugin, see
         *    http://stackoverflow.com/q/2148695/367456
         */
        function getCookie(c_name)
        {
        var i,x,y,ARRcookies=document.cookie.split(";");
        for (i=0;i<ARRcookies.length;i++)
        {
          x=ARRcookies[i].substr(0,ARRcookies[i].indexOf("="));
          y=ARRcookies[i].substr(ARRcookies[i].indexOf("=")+1);
          x=x.replace(/^\s+|\s+$/g,"");
          if (x==c_name)
            {
            return unescape(y);
            }
          }
        }
    
        jQuery(document).ready(function() {
            jQuery('#buttonLink').dialog({autoOpen: false});
            var readerStatus=getCookie('readerStatus');
    
            if (readerStatus && readerStatus=="tester")  
            {
                jQuery("#buttonLink").dialog('open');
            }
        });
    </script>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示