//打开新页面并利用post方式传递参数 function openNewPageWithPostData(postAddress,opentype,paramNames,paramValues) { var newWindow = window.open(postAddress,opentype); if (!newWindow) { return false; }
var postDataHtml="<html><head></head><body>"; postDataHtml = postDataHtml + "<form id='postDataForm' method='post' action='"+postAddress+"'>";