现在有一个父页面A,里面有好多好多行数据,写了一个js函数:function fnSelectaRow(otable){
  try{
   var oTr = fnSelectRow(otable);
   id=oTr.id; 
   Assetlist.fatherID.value = id;
   Assetlist.BYID.value = id;
   Assetlist.AssetId.value = id;  
  }catch(e){
  //alert(e);
  }
}然后在A的fnload里面有一行代码,地址指向了一个中间页面B:
parent.undersideFrame.location.href = "borrowContentFrame.jsp?" ;这个中间页面B里面有个frameset,代码如下:<frameset rows="*" id="frasetArchFolder" framespacing="0"
frameBorder="0" borderColor="#8E8E8E" leftmargin="0" marginheight="0"
marginwidth="0" topmargin="0">
<frame name="fraFileInfo"
src="borrowContentList.jsp" frameborder="0"
framespacing="0" marginheight="0" marginwidth="0" noresize
scrolling="yes">
</frameset>
B里面的代码指向了一个页面C,我的问题是,用js代码能不能取得A页面的值?比如说,每次用户选择了A页面的一行后,都会激发fnSelectaRow函数,然后Assetlist.BYID的值就会改变,我在C页面里面能不能取得A页面里面的Assetlist.BYID的最新值?刚上手js,求人指点,谢谢