我该如何分配PHP定义脚本

恒定值,这基本上是一个Ajax响应我要指派从配置文件位置我都存储在不断我该如何分配PHP定义脚本

define(BASE_URL, "http://example.net/lc-latest/"); 

$website = BASE_URL ;

这是我的示例页面代码的脚本:

if (response["success"] == true) { 

$("#showMessage").html(response['message']);

location = "/lc-latest/gdpi.php?jobid="+response["id"]

/* I want to re write this link as `$website` so that if I changed

the project location it should not disturb.*/

location = "<?php BASE_URL ?>gdpi.php?jobid="+response["id"] //can i write like this in script of ajax response.?

window.open(location);

}

回答:

你可以保存HTML中的BASE_URL变量就这样

<body base_url="<?php echo BASE_URL ?>"> 

,然后在你的Ajax响应阅读它使用jQuery就像这样

location = $('body').attr('base_url') + "gdpi.php?jobid="+response["id"] 

以上是 我该如何分配PHP定义脚本 的全部内容, 来源链接: utcz.com/qa/266574.html

回到顶部