为什么保存的JavaScript不能在Firefox的工作?

我使用此脚本,但不能在Firefox的我能做些什么工作?,但在IE好工作

function doSaveAs(){
    if (document.execCommand){
        document.execCommand("SaveAs")
    }
    else {
        alert("Save-feature available only in Internet Exlorer 5.x.")
    }
}