我有通過調用我的控制器像這樣的動作包含圖像我想設置一個按鈕來重新加載此圖像的觀點:呼叫MVC行動
<a href="javascript://" class="Button ButtonLarge" id="Reload"><span><span class="ButtonIcon NewTopic">Refresh</span></span></a>
和行動像這樣:
public ActionResult Image()
{
var builder = new XCaptcha.ImageBuilder();
var result = builder.Create();
Session.Add("SecurityNumber", result.Solution);
return new FileContentResult(result.Image, result.ContentType);
}
我需要使用javascript調用這個動作並設置新的圖像源的任何幫助,將是很好的
您可以使用jquery $ .get。 http://api.jquery.com/jQuery.get/而不是使用JavaScript –
我需要它使用JavaScript –
是,或者如果你能給我爲例我怎麼能做到這一點的jquerey –