我在下面有一个 iframe:
<iframe class='upload_target' name='upload_target' src='#' style='width:0;height:0;border:0px;solid;#fff;'></iframe>
我试图停止下面的命令,但我不断收到未定义的错误:
$('.upload_target').contentwindow is undefined
我该如何解决这个未定义的错误?
下面是代码:
$(".uploadbutton").click(function() {
$(".upload_target").contentWindow.stop(); //for anything but IE
$(".upload_target").contentWindow.document.execCommand("Stop"); // for IE
return stopImageUpload();
});