javascript getattribute问题IE 11

时间:2014-11-04 06:49:05

标签: javascript asp.net

我在javascript中使用getattribute并且它在IE 11中不起作用。是否有任何等效的getattribute。下面是我的代码。

代码: -

var innerFrames = currentRow.all.tags("iframe");

if(innerFrames.length > 0)
{
  var currentFrame = innerFrames[0];
  var frmID = currentFrame.getAttribute("id");
  var ownerID = currentFrame.getAttribute("displayID");
}
var sGroupCaption = (currentFrame.getAttribute("Caption") == null) ? "" : currentFrame.getAttribute("Caption");

if (currentFrame.getAttribute("isEmpty")!= null){ }

    var Type = (currentFrame.getAttribute("displayType") == null) ? "" : currentFrame.getAttribute("displayType");

请建议我可以在javscript中重新发布这个getattribute

由于

1 个答案:

答案 0 :(得分:0)

您可以直接访问以下属性:

  • currentFrame.myProperty
  • 设置currentFrame [ “myProperty的”]