基于ie内核的小型桌面浏览器
提供了很多的了很多的js接口 不仅仅可以下载页面, 而且可以做桌面的应用程序
下载地址
http://download.csdn.net/detail/xpjcoo/4991005
ie下js访问相应的资源
读取上传文件的本地地址
function geturl(id) {
try {
var file = document.getElementById(id);
file.select();
return document.selection.createRange().text;
} catch (e) {
return document.getElementById(id).value;
}
}
联系作者:q 2488602922