www.zibofortune.com Open in urlscan Pro
43.249.1.2  Public Scan

URL: https://www.zibofortune.com/
Submission: On March 17 via manual from DE — Scanned from DE

Form analysis 1 forms found in the DOM

POST /index.php?m=home&c=Lists&a=gbook_submit&lang=cn

<form method="POST" action="/index.php?m=home&amp;c=Lists&amp;a=gbook_submit&amp;lang=cn" enctype="multipart/form-data" onsubmit="return submit83c8fc0c902b874f8e3176eb5786f494(this);">
  <div style="color:#fff">Name:</div>
  <input type="text" id="attr_24" name="attr_24" placeholder="Name">
  <div style="color:#fff">Tel:</div>
  <input type="text" id="attr_28" name="attr_28" placeholder="Tel">
  <div style="color:#fff">Content:</div>
  <textarea id="attr_1" rows="3" type="text" value="" name="attr_1" placeholder="content"></textarea>
  <input type="submit" value="Make a comment">
  <input type="hidden" name="gourl" id="gourl_83c8fc0c902b874f8e3176eb5786f494" value="https://www.zibofortune.com/"><input type="hidden" name="typeid" value="30"><input type="hidden" name="__token__83c8fc0c902b874f8e3176eb5786f494"
    id="83c8fc0c902b874f8e3176eb5786f494" value="08d898d57337c5d44f58636672a35c5f">
  <script type="text/javascript">
    function submit83c8fc0c902b874f8e3176eb5786f494(elements) {
      if (document.getElementById('gourl_83c8fc0c902b874f8e3176eb5786f494')) {
        document.getElementById('gourl_83c8fc0c902b874f8e3176eb5786f494').value = window.location.href;
      }
      var x = elements;
      for (var i = 0; i < x.length; i++) {
        if (x[i].name == 'attr_1' && x[i].value.length == 0) {
          alert('content不能为空!');
          return false;
        }
        if (x[i].name == 'attr_28' && !(/^1\d{10}$/.test(x[i].value))) {
          alert('Tel格式不正确!');
          return false;
        }
      }
      elements.submit();
    }

    function ey_fleshVerify(id) {
      var src = "/index.php?m=api&c=Ajax&a=vertify&type=guestbook&lang=cn";
      src += "&r=" + Math.floor(Math.random() * 100);
      document.getElementById(id).src = src;
    }

    function f3f457be9ed43b5d86b10ebcbc780e8c2() {
      //步骤一:创建异步对象
      var ajax = new XMLHttpRequest();
      //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
      ajax.open("post", "/index.php?m=api&c=Ajax&a=get_token&name=__token__83c8fc0c902b874f8e3176eb5786f494", true);
      // 给头部添加ajax信息
      ajax.setRequestHeader("X-Requested-With", "XMLHttpRequest");
      // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
      ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      //步骤三:发送请求+数据
      ajax.send('_ajax=1');
      //步骤四:注册事件 onreadystatechange 状态改变就会调用
      ajax.onreadystatechange = function() {
        //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
        if (ajax.readyState == 4 && ajax.status == 200) {
          document.getElementById("83c8fc0c902b874f8e3176eb5786f494").value = ajax.responseText;
          document.getElementById("gourl_83c8fc0c902b874f8e3176eb5786f494").value = window.location.href;
        }
      }
    }
    f3f457be9ed43b5d86b10ebcbc780e8c2();

    function getNext1598839807(id, name, level) {
      var input = document.getElementById('attr_' + name);
      var first = document.getElementById('first_id_' + name);
      var second = document.getElementById('second_id_' + name);
      var third = document.getElementById('third_id_' + name);
      var findex = '',
        fvalue = '',
        sindex = '',
        svalue = '',
        tindex = '',
        tvalue = '',
        value = '';
      if (level == 1) {
        if (second) {
          second.style.display = 'none';
          second.innerHTML = '';
        }
        if (third) {
          third.style.display = 'none';
          third.innerHTML = '';
        }
        findex = first.selectedIndex;
        fvalue = first.options[findex].value;
        input.value = fvalue;
        value = fvalue;
      } else if (level == 2) {
        if (third) {
          third.style.display = 'none';
          third.innerHTML = '';
        }
        findex = first.selectedIndex;
        fvalue = first.options[findex].value;
        sindex = second.selectedIndex;
        svalue = second.options[sindex].value;
        if (svalue) {
          input.value = fvalue + ',' + svalue;
          value = svalue;
        } else {
          input.value = fvalue;
        }
      } else if (level == 3) {
        findex = first.selectedIndex;
        fvalue = first.options[findex].value;
        sindex = second.selectedIndex;
        svalue = second.options[sindex].value;
        tindex = third.selectedIndex;
        tvalue = third.options[tindex].value;
        if (tvalue) {
          input.value = fvalue + ',' + svalue + ',' + tvalue;
          value = tvalue;
        } else {
          input.value = fvalue + ',' + svalue;
        }
      }
      if (value) {
        if (document.getElementById(id)) {
          document.getElementById(id).options.add(new Option('请选择', ''));
          var ajax = new XMLHttpRequest();
          //步骤二:设置请求的url参数,参数一是请求的类型,参数二是请求的url,可以带参数,动态的传递参数starName到服务端
          ajax.open("post", "/index.php?m=api&c=Ajax&a=get_region&pid=" + value, true);
          // 给头部添加ajax信息
          ajax.setRequestHeader("X-Requested-With", "XMLHttpRequest");
          // 如果需要像 HTML 表单那样 POST 数据,请使用 setRequestHeader() 来添加 HTTP 头。然后在 send() 方法中规定您希望发送的数据:
          ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
          //步骤三:发送请求+数据
          ajax.send('_ajax=1');
          //步骤四:注册事件 onreadystatechange 状态改变就会调用
          ajax.onreadystatechange = function() {
            //步骤五 如果能够进到这个判断 说明 数据 完美的回来了,并且请求的页面是存在的
            if (ajax.readyState == 4 && ajax.status == 200) {
              var data = JSON.parse(ajax.responseText).data;
              if (data) {
                data.forEach(function(item) {
                  document.getElementById(id).options.add(new Option(item.name, item.id));
                  document.getElementById(id).style.display = "block";
                });
              }
            }
          }
        }
      }
    }
  </script>
</form>

Text Content

 * Home
 * About us
 * News
 * Product
   CERAMICS S/S FLATWARE S/S Tumbler GLASSWARE
 * Contact

 * Home
 * About us
 * News
 * Product
   CERAMICS S/S FLATWARE S/S Tumbler GLASSWARE
 * Contact

 * 
 * 

prevnext1 2

product
CERAMICS
explore more >
S/S FLATWARE
explore more >
S/S Tumbler
explore more >
GLASSWARE
explore more >
About us
Shandong Fortune Housewares Co.,Ltd. was founded by Mr. Jianguo Zhao in Zibo
city of Shandong Province since 2003, which specializes in ceramic mug and
dinnerware, as well stainless steel flatware.It is gathering fashion design,
great artwork and international business together, and there was including a
strong development department, two big product lines and a high making sales
dept. we developed 400 series of new and fashion designs one year, which are
mostly sold to U.S.A, Canada, Europe, Australia, South America et...
explore more >
news
Cold and hot shock glass table...
2021-06-21
Read More >
125th Spring Canton fair Booth...
2021-06-08
Read More >
126th Canton fair...
2021-06-08
Read More >

Hot Products
FT-ML2023
View all products
FT-GW015
View all products
FT-CR003
View all products
FT-1534
View all products

MORE INFORMATION
 * > About us
 * > News
 * > Product

Contact
Tel:+86 0533-3191919 / 3192929
E-mail:James@zibofortune.com
Add:2020 Zhongrun Ave, Zhoucun, Zibo, Shandong, China
Click To Enter The Enterprise Email
Online Message
Name:
Tel:
Content:
Copyright © 2012-2018 EYOUCMS. 易优CMS 版权所有 Powered by EyouCms琼ICP备xxxxxxxx号