Hello! It's a great pleasure to have you visit my blog.
It's truly a fateful encounter. If you are interested in Chinese goods, we can collaborate.
I can provide you with affordable Chinese products that you can sell in your country, thereby boosting our economic income.


If you are willing to cooperate, I hope to hear from you to discuss the opportunity for collaboration.
Here is my Email: t@29ym.com
Looking forward to connecting with you and embarking on this partnership together!

Js根据页面大小判断是否移动端

根据设备页面的大小,判断是否移动端打开。

 var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
if (oWidth < 1200) {} else {
   // window.location.href = "index.php";
}
window.addEventListener("orientationchange", function () {
    var oWidth = document.documentElement.clientWidth || document.body.clientWidth;

    if (oWidth < 1200) {

    } else {
        //   window.location.href = "index.php";
    }
}, false);
window.addEventListener("resize", function () {
    var oWidth = document.documentElement.clientWidth || document.body.clientWidth;
    if (oWidth < 1200) {} else {
         //  window.location.href = "index.php";
    }
}, false);
发表新评论