我想通过以下方式在浏览器中打开一个窗口:
window.open('/Item/Article/' + result, 'ItemArticle', 'resizable=yes,scrollbars=yes,height=' + res.height + ',width=' + res.width + ',left=0', null);
但是,如果上述动态 URI 不包含文档,则不会创建任何 Iframe。有没有一种方法可以在我尝试打开 iframe 之前检查 URI 中的项目是否存在,这样我就可以通知用户没有找到文档。