manifest文件中要缓存的文件写在()部分。
manifest文件中要缓存的文件写在()部分。
相关考题:
Servlet可以通过以下哪个接口实现请求转发机制?()A、HttpServletRequest接口B、RequestDispatcher接口C、HttpServletResponse接口D、ServletConfig接口E、Filter接口
varx=“Iamglobalx”;vary=“Iamglobaly”;functionfoo(){vary=x=“Hellofromfoo”;}foo();执行上面的代码后,x、y的值分别是多少()。A、抛出SyntaxError错误B、x="Hellofromfoo";y="Iamglobaly"C、x="Iamglobalx";y="Iamglobaly"D、x="Hellofromfoo";y="Hellofromfoo"