www.googleconcierge.net
Open in
urlscan Pro
38.239.98.93
Public Scan
Submitted URL: http://googleconcierge.net/
Effective URL: https://www.googleconcierge.net/
Submission: On October 10 via api from SG — Scanned from SG
Effective URL: https://www.googleconcierge.net/
Submission: On October 10 via api from SG — Scanned from SG
Form analysis
1 forms found in the DOMPOST /index.php?m=home&c=Lists&a=gbook_submit&lang=cn
<form class="feedback_list_box" method="POST" enctype="multipart/form-data" action="/index.php?m=home&c=Lists&a=gbook_submit&lang=cn" onsubmit="return checkForm();">
<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">
</div>
</div>
</div>
</div>
<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="text" name="attr_2">
</div>
</div>
</div>
</div>
<div class="li-div">
<div class="w-form-section w-form-UL clearfix" style="">
<div class="w-form-tel">
<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_3">
</div>
</div>
</div>
</div>
<div class="li-div">
<div class="w-form-section w-form-UL clearfix" style="">
<div class="w-form-largeText">
<label class="w-label-form"> 留言 </label>
<div class="w-form-fr" style="">
<textarea class="w-textarea-form" style="width:100%;height:5em" name="attr_4"></textarea>
</div>
</div>
</div>
</div>
<div class="w-form-submit">
<div class="w-buttom" style="">
<button class="btn-default-w g-form-components" type="submit"> <span class="btn-inner">提交</span></button>
</div>
</div>
<input type="hidden" name="gourl" id="gourl_d8cc47f89705f0e2908bcfa251a1022a" value="https://www.googleconcierge.net"><input type="hidden" name="typeid" value="12"><input type="hidden" name="__token__d8cc47f89705f0e2908bcfa251a1022a"
id="d8cc47f89705f0e2908bcfa251a1022a" value="">
<script type="text/javascript">
function submitd8cc47f89705f0e2908bcfa251a1022a(elements) {
if (document.getElementById('gourl_d8cc47f89705f0e2908bcfa251a1022a')) {
document.getElementById('gourl_d8cc47f89705f0e2908bcfa251a1022a').value = window.location.href;
}
elements.submit();
}
function ey_fleshVerify_1696943217(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 fb839f35141008d3445071eddba9f4669() {
var ajax = new XMLHttpRequest();
ajax.open("post", "/index.php?m=api&c=Ajax&a=get_token&name=__token__d8cc47f89705f0e2908bcfa251a1022a", 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("d8cc47f89705f0e2908bcfa251a1022a").value = ajax.responseText;
document.getElementById("gourl_d8cc47f89705f0e2908bcfa251a1022a").value = window.location.href;
}
}
}
fb839f35141008d3445071eddba9f4669();
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
开云「中国」- KAIYUN官方网站 * 网站首页 * 关于开云 * 新闻资讯 返回 * 行业新闻 * 公司新闻 * 媒体新闻 * 项目案例 返回 * 规划设计 * 园林景观 * 教育建筑 * 居住建筑 * 联系开云 * 网站首页 * 关于开云 * 新闻资讯 返回 * 行业新闻 * 公司新闻 * 媒体新闻 * 项目案例 返回 * 规划设计 * 园林景观 * 教育建筑 * 居住建筑 * 联系开云 * none * none 1 2 PrevNext 项目案例 PRODUCT 产品标题2 产品标题1 产品标题7 产品标题6 产品标题5 产品标题4 产品标题3 产品标题2 产品标题1 产品标题7 产品标题6 产品标题5 产品标题4 产品标题3 产品标题2 产品标题1 产品标题7 产品标题6 产品标题5 产品标题4 产品标题3 关于开云 "开云「中国」- Kaiyun官方网站是专注于游戏开发,为用户带来前所未有的顶级私密游戏体验,为您提供:手机APP下载,最新版,客户端,登录入口,成为用户心目中绝无仅有,最稳定、最安全、口碑最佳的平台!开云「中国」- Kaiyun官方网站成立于2011年,总部位于中国广州市。公司的宗旨是为玩家提供高品质、有趣的游戏体验,已经成为中国游戏行业的领军企业之一。作为一家专注于游戏的公司,拥有丰富的游戏产品线,包括真人游戏、体育游戏、电竞游戏等多种类型。其中,开云「中国」- Kaiyun官方网站最受欢迎的游戏包括AG真人、游戏、体育、电竞等。除了以上三... MORE 新闻资讯 NEWS * view detaits 开云塑料垃圾桶的标准化管理与监督 开云如今,随着社会的发展和生活水平的提高,塑料垃圾的产生量也呈现出日益增长的趋势。为了更好地管理和监督塑料... * view detaits 开云塑料垃圾桶的循环经济模式探索 开云塑料垃圾桶的循环经济模式探索 随着全球对环境保护的日益重视,循环经济模式成为了当今社会发展的重要方向... * view detaits 开云塑料垃圾桶的生产与使用环境风险评估 开云塑料垃圾桶作为垃圾分类和处理的重要工具,在我们的生活中扮演着重要的角色。然而,生产和使用塑料垃圾桶也存... 联系开云 Contact us 开云「中国」- Kaiyun官方网站 地址:泉州市拾叙峡谷115号 电话:020-88888888 传真:020-99999999 服务热线:400-888-8888 手机号码:13594780139 邮箱:purported@att.net 姓名 邮箱 电话 留言 提交 Copyright© 2022-2024 开云「中国」- Kaiyun官方网站 版权所有HTML地图 XML地图 备案号:赣ICP备19013704号 TOP