window.location改变window.name,这是正确的

时间:2017-02-27 13:27:08

标签: javascript html

我正在尝试编写OSLC Delegated UI: (http://open-services.net/bin/view/Main/OslcCoreSpecification#Delegated_User_Interface_Dialogs

现在它说你应该做以下事情:

  1. 阅读返回网址
  2. 通过window.name变量发送响应
  3. 表示用户已回复
  4. 所以我使用了这段代码:

    var response = '{"oslc:results" : [{}]}';
    var returnURL = window.name;
    window.name = response;
    window.location = returnURL;  
    

    但是我看到,当我设置window.location时,window.name被重新设置回之前的值,然后我使用行window.name = response;设置它是正确的行为吗?

0 个答案:

没有答案