因此,假设我的脚本在$cities = array('New York', 'Los Angeles', 'Chicago', 'Houston',
'Philadelphia', 'Phoenix','San Antonio', 'San Diego',
'Dallas','San Jose');
$states = array('NY', 'CA', 'IL','TX','PA','AZ','TX','CA','TX','CA');
$population = array('8,175,133','3,792,621','2,695,598','2,100,263',
'1,526,006','1,445,632','1,327,407','1,307,402',
'1,197,816','945,942');
元素上包含一些$p = 0;
for($i = 0, $theCity = count($cities);$i<$theCity; $i++){
$cityPlace = $cities[$i];
$province = $states[$i];
$number = $population[$i];
if($province === 'CA' ){
$pops[$p] = $number;
$p++;
print "$number<br>"; //to check outcome
}
}
$a = array_sum($pops);
print $a;
,例如EventHandler
,并且函数使用某些DOM
属性(例如元素的.addEventListener("click", animFunc)
(例如)。我需要获取该CSS
属性的值才能继续执行。我有以下选项:
backgroundColor
,并将其与外部样式表混在一起CSS
而非CSS
向JS
属性添加值,这些值将在脚本中稍后使用CSS
的函数来读取外部样式表(据我所知,到目前为止效率最低)如果有人可以对此说一句话,请先感谢。