我正在创建一个我想在 javascript 上用作类的函数。我的函数将调用一个使用 php parse json 创建的 JSON 页面,并设置变量,但它不起作用。你能给我一些提示吗?这是代码,提前谢谢:
function SiteParams(){
$.getJSON("parse/parametri.php",function(data){
$.each(data,function(index,value){
this.NomeSito = value.nomesito;
this.URLSito = value.urlsito;
this.EmailAutore = value.email;
this.NomeAutore = value.nomeautore;
});
});
}
var website = new SiteParams();
function ModuleBase(){
$("<div/>",{id:"title", text:website.NomeSito}).appendTo("#main");
}