购房登记自动填写-查询

try to take over the world!

  1. // ==UserScript==
  2. // @name 购房登记自动填写-查询
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://171.221.172.13:8888/lottery/accept/searchResult
  8. // @grant none
  9. // @run-at document-end
  10. // @require http://cdn.bootcss.com/jquery/1.8.3/jquery.min.js
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. var text = $("body").text();
  17. if(text.indexOf("购房登记申请结果") == -1){
  18. $("input#cardId").val("身份证号码");
  19. $("input#telephone").val("手机号");
  20. $("#bt_query").click();
  21. }
  22.  
  23. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址