我需要在单击按钮时创建一个链接,并通过相同的单击单击该链接。我正在测试上面提到的方法
<script type="text/javascript">
function download()
{
alert("Hello");
var link=document.createElement("a");
link.href="https://stackoverflow.com/questions/4772774/how-do-i-create-a-link-using- javascript";
document.getElementById(link).click();
// here it says "cannot click on null", means id is not link, then how can i obtain the id
alert("Hello again");
}
</script>
<button type ="button" value="Download" onClick="download();">Downloads</button>
我需要这个,因为在单击按钮时,我将拨打 get 电话,我将收到一个 URL,然后我需要单击 URL(制作下载按钮,链接可能会有所不同)。有没有其他方法可以做到这一点?
我提出:如何以编程方式单击带有 javascript 的链接?
和
实现这一目标,但没有成功。