在.js中有:
// JavaScript Documentfunction diaplayCount()
{
document.write("You are welcome!");
}在HTM中有:<script type="text/javascript">
    alert(document.cookie)
    diaplayCount()
</script>可是发现网页只显示了document.cookie的内容,“you are welcome!”没有显示,这是为什么呢