当前网页调用其他网页
实例描述:
一个页面可以使用iframe来加载另一个页面,但有些IE是禁止使用框架的,所以本例使用另外一个方法,实现在当前页中调用另一个网页。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Document</title> </head> <body> <object data="http://baidu.com" type="text/x-scriptle" width="100%" height="500"></object> </body> </html>
本例的重点是object标签的使用。其type属性是‘text/x-scriptlet’,其中‘x-scriptlet’是IE的一个插件。data属性表示要加载的数据。
高否?富否?帅否?
否?
滚去学习!