function getUrlParameter(name){
        name = name.replace(/[]/,"\[").replace(/[]/,"\[").replace(/[]/,"\\\]");
        var regexS = "[\\?&]"+name+"=([^&#]*)";
        var regex = new RegExp( regexS );
        var results = regex.exec(window.parent.location.href );
        if( results == null ) return ""; else {
            return results[1];
        }
    };
http://localhost:8080/pcms/moduleApp/indexControl.html?conferId=117

var conferid =getUrlParameter('conferId');

 

相关文章:

  • 2021-10-22
猜你喜欢
  • 2021-06-26
  • 2021-07-20
  • 2021-11-20
  • 2021-11-20
  • 2022-02-01
相关资源
相似解决方案