shangjilife.com
Open in
urlscan Pro
156.232.60.10
Public Scan
URL:
https://shangjilife.com/
Submission: On January 29 via api from US — Scanned from US
Submission: On January 29 via api from US — Scanned from US
Form analysis
1 forms found in the DOMPOST /index.php?m=home&c=Lists&a=gbook_submit&lang=cn
<form method="POST" class="guest-form" enctype="multipart/form-data" action="/index.php?m=home&c=Lists&a=gbook_submit&lang=cn" id="myform">
<div class="w-form" style="">
<div class="li-div col-li-div">
<div class="col-table">
<table class="div-table" width="100%" cellspacing="0" cellpadding="0" border="0">
<tbody>
<tr>
<td class="td-w" width="50%">
<div class="div-padding">
<div class="li-div">
<div class="w-form-section w-form-UL clearfix" style="">
<div class="w-form-shartText">
<label class="w-label-form"> <span>姓名</span> </label>
<div class="w-form-fr" style="">
<input class="w-text-form" style="width:100%" type="text" name="attr_1" id="attr_1">
</div>
</div>
</div>
</div>
</div>
</td>
<td class="td-w" width="50%">
<div class="div-padding">
<div class="li-div">
<div class="w-form-section w-form-UL clearfix" style="">
<div class="w-form-Email">
<label class="w-label-form"> <span>邮箱</span> </label>
<div class="w-form-fr" style="">
<input class="w-text-form" style="width:100%" type="email" name="attr_2" id="attr_2">
</div>
</div>
</div>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="w-form-submit">
<div class="w-buttom" style="">
<div class="btn-default-w g-form-components" onclick="checkForm();"> <span class="btn-inner">提交</span> </div>
</div>
</div>
</div>
<input type="hidden" name="gourl" id="gourl_3a206ecb29d37319d6fc7fe42d6f3da3" value="https://www.shangjilife.com"><input type="hidden" name="typeid" value="5"><input type="hidden" name="__token__3a206ecb29d37319d6fc7fe42d6f3da3"
id="3a206ecb29d37319d6fc7fe42d6f3da3" value="">
<script type="text/javascript">
function submit3a206ecb29d37319d6fc7fe42d6f3da3(elements) {
if (document.getElementById('gourl_3a206ecb29d37319d6fc7fe42d6f3da3')) {
document.getElementById('gourl_3a206ecb29d37319d6fc7fe42d6f3da3').value = window.location.href;
}
elements.submit();
}
function ey_fleshVerify_1706446724(id) {
var token = id.replace(/verify_/g, '__token__');
var src = "/index.php?m=api&c=Ajax&a=vertify&type=guestbook&lang=cn&token=" + token;
src += "&r=" + Math.floor(Math.random() * 100);
document.getElementById(id).src = src;
}
function f0244d978bc31407d3ded05cb71735d1b() {
var ajax = new XMLHttpRequest();
ajax.open("post", "/index.php?m=api&c=Ajax&a=get_token&name=__token__3a206ecb29d37319d6fc7fe42d6f3da3", true);
ajax.setRequestHeader("X-Requested-With", "XMLHttpRequest");
ajax.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
ajax.send('_ajax=1');
ajax.onreadystatechange = function() {
if (ajax.readyState == 4 && ajax.status == 200) {
document.getElementById("3a206ecb29d37319d6fc7fe42d6f3da3").value = ajax.responseText;
document.getElementById("gourl_3a206ecb29d37319d6fc7fe42d6f3da3").value = window.location.href;
}
}
}
f0244d978bc31407d3ded05cb71735d1b();
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
博天堂918(中国)-APP STORE * 首页 * 产品中心 返回 * 第一系列 * 第二系列 * 第三系列 * 新闻动态 返回 * 公司动态 * 行业资讯 * 关于博天堂 * 联系博天堂 * 首页 * 产品中心 返回 * 第一系列 * 第二系列 * 第三系列 * 新闻动态 返回 * 公司动态 * 行业资讯 * 关于博天堂 * 联系博天堂 * none * none 1 2 PrevNext 博天堂918(中国)-App Store "博天堂是专注于游戏开发,为用户带来前所未有的顶级私密游戏体验,为您提供:手机APP下载,最新版,客户端,登录入口,成为用户心目中绝无仅有,最稳定、最安全、口碑最佳的平台!博天堂成立于2011年,总部位于中国广州市。公司的宗旨是为玩家提供高品质、有趣的游戏体验,已经成为中国游戏行业的领军企业之一。作... 了解详情 NEWS 新闻动态 如何分辨钻石优劣 2024-01-28 ... + * 28 2024-01 【公司动态】法国游客美国公园寻宝收获746克拉钻石 一名来自法国巴黎的游客日前去美国阿肯色州钻石坑公园寻宝,将一颗重7.46克拉的钻石收入囊中。 据美国有线日报道,这...... + * 28 2024-01 【公司动态】怎样鉴定红宝石 金投网珠宝频道提供怎样鉴定红宝石等相关资讯,包括怎样鉴定红宝石等相关介绍和知识。 天然宝石“十红九裂”,没有一点瑕...... + * 28 2024-01 【公司动态】专家提醒:买钻要认清国家4C标准谨防“残 ... + PRODUCT 产品中心 产品名称八 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称七 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称六 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称五 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称四 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称三 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称二 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 产品名称一 铂金镶嵌钻石;7英寸长;榄尖形切割钻石,总重0.18克拉;圆形明亮式切割钻石,总重2.90克拉... 了解详情 CONCEPT 我们的理念 核心价值观:诚信、创新、服务企业核心: 诚信 企业精神: 团结拼搏、开拓求实、满足用户、科技进步。 客户:为客户提供高质量和最大价值的专业化产品和服务,以真诚和实力赢得客户的理解、尊重和支持。市场:为客户降低采购成本和风险,为客户投资提供切实保障。 发展:追求永续发展的目标,并把它建立在客户满意的基础上。 关... 联系我们 电话:400-928-2212 传真:+86-123-4567 邮箱:liuyinyin@kd.cn Q Q:1234567890 地址:北京市东城区永定门西滨河路8号院7楼10层1101内01单元 产品中心 第一系列 第二系列 第三系列 新闻动态 公司动态 行业资讯 在线留言 姓名 邮箱 提交 -------------------------------------------------------------------------------- Copyright© 2022-2024 博天堂918(中国)-App Store 版权所有HTML地图 XML地图 赣ICP备19014020号