Launch download in the same tab without opening new tab or window in Javascript

后端 未结 4 546
野趣味
野趣味 2020-12-13 06:38

I am using this javascript function to launch download

function startDownload(url) {
   window.open(url, \'Download\');
}

It works, but i

4条回答
  •  猫巷女王i
    2020-12-13 07:31

    
    
    • _blank - URL is loaded into a new window. This is default
    • _parent - URL is loaded into the parent frame
    • _self - URL replaces the current page
    • _top - URL replaces any framesets that may be loaded name - The name of the window

提交回复
热议问题