HTML - 通过POST将参数传递给模态对话框

时间:2012-06-18 09:03:26

标签: javascript html post

我们的代码如下:

var result = window.showModalDialog("somepage.jsp?argument1=abc", 
                                     dialogArguments, 
                                     otherArgs);
if (result ...

我想在argument1中传递POST,因为它包含敏感信息。

是否可以打开模态对话框并在POST中传递参数?怎么样?

1 个答案:

答案 0 :(得分:0)

window.showModalDialog无法使用POST。但是,您可以通过提交表单来解决这个问题。

http://social.msdn.microsoft.com/Forums/en-us/iewebdevelopment/thread/126fcea8-c28b-49ce-ad49-65884ffabeb6

或者,还有许多其他方法可以做类似的事情。