mab.js 377 B

123456789101112
  1. const queryString = window.location.search;
  2. const urlParams = new URLSearchParams(queryString);
  3. const cbid = urlParams.get('cbid');
  4. document.getElementById("cbid").value = cbid;
  5. const workerID = urlParams.get('workerID');
  6. document.getElementById("workerID").value = workerID;
  7. function test(){
  8. window.parent.location = "http://192.168.20.133:8080/PHP/forms/DTC.html";
  9. }