脚本异步延迟未定义的属性名称

时间:2018-08-11 11:38:50

标签: eclipse asynchronous xhtml deferred

我在Eclipse Oxygen中有一个xhtml文件

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 

我尝试使用

<script async="defer"
src="https://maps.googleapis.com/maps/api/js?key=...&amp;callback=initMap" type="">
</script>

但是我收到“未定义属性名称(异步)”通知。我该怎么做才能克服这个问题?

1 个答案:

答案 0 :(得分:0)

尝试一下:

<script async="true" defer
src="https://maps.googleapis.com/maps/api/js?key=...&amp;callback=initMap" type="">
</script>