我想用PhantomJS下载一些图像,但我有一点问题。 我的代码是这样的:
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="container">
<h3 id="question"></h3>
<form id="form">
<div>
<input type="radio" name="option" value="0" id="option0" checked>
<label for='option0'></label>
</div>
<div>
<input type="radio" name="option" value="1" id="option1">
<label for='option1'></label>
</div>
<div>
<input type="radio" name="option" value="2" id="option2">
<label for='option2'></label>
</div>
</form>
<br/>
<a href="#" id="next" class="button">Next</a>
<br/>
<div id="progressbar"></div>
</div>
问题是网址重定向到网站的主页。 如何禁用URL重定向并保存图像? URL类似于:http://some_url/00.jpg。 我想从这个网站下载这个(和其他人)图像,但是我无法使用重定向保存图像。
我在互联网上找不到可能解决我问题的任何内容。 有人可以帮帮我吗?