仿照写了个保存代码到本地的脚本,但却保存了整个页面而非选定的部分,求大神解惑。
function saveCode(obj) {
var winname = window.open('', '_blank', 'top=10000');
winname.document.open('text/html', 'replace');
winname.document.write(obj.value);
winname.document.execCommand('saveas','','code.htm');
winname.close();
}
参照页面
http://bbs.blueidea.com/thread-3111792-1-1.html的另存代码效果(仅ie有效)
--
FROM 221.222.158.*