如何在javascript中放置var url?

时间:2012-03-17 05:50:13

标签: php javascript

我在php(取自WordPress path url in js script file)中做了这样的声明:

<script type="text/javascript">
    var templateurl = "<?php bloginfo('template_url') ?>";
</script>

然后我在我的javascript(myjava.js)中有这个代码:

init : function(ed, url) {

        ed.addCommand('mcearrow_shortcodes', function() {
            ed.windowManager.open({
                file : url + '/interface.php',
                width : 410 + ed.getLang('arrow_shortcodes.delta_width', 0),
                height : 250 + ed.getLang('arrow_shortcodes.delta_height', 0),
                inline : 1
            }, {
                plugin_url : url
            });
        });


        ed.addButton('arrow_shortcodes', {
            title : 'arrow_shortcodes.desc',
            cmd : 'mcearrow_shortcodes',
            image : url + '/btn.png'
        });


        ed.onNodeChange.add(function(ed, cm, n) {
            cm.setActive('arrow_shortcodes', n.nodeName == 'IMG');
        });
    }, 

我想用templateurl更改所有'url +',我试图使用它:

 file : templateurl + '/includes/scripts/interface.php'

但它不起作用。它不会加载interface.php。但是,如果我使用'url +',则interface.php会被完美加载。 问题是,我想把我的interface.php放在不同的文件夹中。不在myjava.js所在的同一文件夹中。

使用我的templateurl变量的正确方法是什么?

非常感谢!

1 个答案:

答案 0 :(得分:2)

templateurl有值吗?请检查一下。你正在分配php变量,所以请回复它。

<script type="text/javascript">
    var templateurl = "<?php echo bloginfo('template_url') ?>";
</script>