ad.unshift()
,内容中的内容是什么意思。我已经阅读了w3schools的教程。但他们没有提及unshift
背后的内容。这里的任何帮助将不胜感激。
我从教程中获得以下代码:
$.post('/self_coded_helpers/jpost_get_ads.php', { count: count } function(ads){
$("td.load_ads").each(function(){
var ad = ads.unshift(), content;
if (ad) {
content = ad.title + "<br>" + ad.description;
} else {
content = "Place a Free Ad Now!";
}
答案 0 :(得分:4)
这行代码一次声明了2个变量:
它正在初始化变量ad
,并设置其值。
它还声明了变量content
,但未设置其初始值。
这两者是无关的。
这就像写作:
var a = 10, b;