如何仅在使用PHP的特定URL路径之后触发脚本

时间:2015-09-06 19:13:44

标签: javascript php

我想用PHP触发JS脚本基本上只在特定的URL路径之后更改inlinehmtl,基本上用于站点翻译purporses。更具体地说,我想触发这个JS脚本:

document.getElementById("changeme").innerHTML = "Get Started";

仅当查询网站的英文(翻译WP插件无法访问的html元素)文件夹时:

这将是/ en /(en for english content)文件夹或example.com/en/以及example.com/en/products.php ...等。

任何想法,PHP脚本看起来如何,比x!

1 个答案:

答案 0 :(得分:0)

最合适的方法似乎是在我看来通过 POST SESSION 将参数传递给PHP脚本。

您还可以在JS中验证您当前的本地化,然后触发脚本

<script>

    ...

    if( checkLocations( window.location.href ) )
    {
        //your script here