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 深度学习中的画图问题
  • ¥15 java报错:使用mybatis plus查询一个只返回一条数据的sql,却报错返回了1000多条
  • ¥15 Python报错怎么解决
  • ¥15 simulink如何调用DLL文件
  • ¥15 关于用pyqt6的项目开发该怎么把前段后端和业务层分离
  • ¥30 线性代数的问题,我真的忘了线代的知识了
  • ¥15 有谁能够把华为matebook e 高通骁龙850刷成安卓系统,或者安装安卓系统
  • ¥188 需要修改一个工具,懂得汇编的人来。
  • ¥15 livecharts wpf piechart 属性
  • ¥20 数学建模,尽量用matlab回答,论文格式