首页> API文档 > JavaScript API
Webview
更新时间: 2024-04-25 19:50:49

Webview

URL传参控制

由于JS-API在页面加载后才会被执行,而对于Webview的一些设置需要在页面加载成功前执行,比如某些重要页面需要在用户看到之前验证其身份、或是在Webview加载网页之前即显示定制的导航栏背景色。 珍岛客户端支持通过在传入的URL后添加参数的方式控制Webview的某些行为或显示效果。

示例

http://www.71360.com/fsask/index.html?fs_auth=true&fs_auth_appName=珍岛问问&fs_nav_bgcolor=c6a60000

参数说明

参数类型说明
fs_nav_titleString控制导航栏标题文字,上限30个字。
fs_nav_bgcolorString控制导航栏颜色,格式为:RRGGBBAA,如FAFAFAFF
fs_nav_pbcolorString控制导航栏进度条颜色,格式为:RRGGBBAA,如FAFAFAFF
fs_nav_fsmenuBoolean控制是否显示珍岛菜单,true为显示,false为不显示,默认显示。
fs_authBoolean控制是否需对当前用户鉴权,如果为true则需要,否则不需要,默认false。
fs_auth_appnameString对当前用户鉴权的应用名,只有在fs_auth=true时使用,非空值需要进行URL encode。

Webview跳转

接口名接口描述
webview.back回退页面
webview.close关闭当前页面
webview.open打开页面
webview.onBackWebviewAndroid物理键回退回调
webview.onCloseWebview页面关闭回调

回退页面

回退到上一个页面。

代码样例

FSOpen.webview.back({

});

方法名:FSOpen.webview.back
JS版本:2.0.0
客户端支持版本:5.4.0及以上

关闭当前页面

代码样例

FSOpen.webview.close({
    extras: {
        data: 1
    }
});

方法名:FSOpen.webview.close
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
extrasObject如果当前页面是通过webview.open接口打开,可通过webview.close接口关闭页面并传递参数extraswebview.openonClose回调。

打开页面

代码样例

FSOpen.webview.open({
    url: 'https://www.71360.com/jsapi-demo',
    onClose: function(extras) {
        alert('open new window');
    }
});

方法名:FSOpen.webview.open
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
urlString需要打开的页面链接地址
onCloseFunction打开的页面关闭后的回调。如果通过webview.open打开页面,可通过webview.close接口关闭页面并传递参数extraswebview.openonClose回调。

Android物理键回退回调

仅Android适用。Android物理返回键返回上个页面时被调用。

代码样例

FSOpen.webview.onBackWebview({
    onBack: function() {
        alert('back to previous page!');
        FSOpen.webview.back();
    },
    onSuccess: function() {
        alert('现在请点击物理返回键');
    }
});

方法名:FSOpen.webview.onBackWebview
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
onBackFunction物理键点击事件回调。如开发者声明了onBack,则需注意在最后根据需要调用FSOpen.webview.back()实现返回上一页,否则Webview不会自动返回。如不声明onBack,Webview会自动返回上一页。

页面关闭回调

Webview窗口被关闭时回调,包括顶部栏关闭按钮及物Android物理返回键关闭。

代码样例

FSOpen.webview.onCloseWebview({
    onClose: function() {
        alert('我要关闭了!');
        FSOpen.webview.close();
    },
    onSuccess: function() {
        alert('现在请点击回退按钮退出当前页面');
    }
});

方法名:FSOpen.webview.onCloseWebview
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
onCloseFunction物理键点击事件回调。如开发者声明了onClose,则需注意在最后根据需要调用FSOpen.webview.close()实现关闭当前页,否则Webview不会自动关闭。如不声明onClose,Webview会自动关闭当前页。

屏幕控制

接口名接口描述
webview.setOrientation屏幕翻转

屏幕翻转

代码样例

FSOpen.webview.setOrientation({
    orientation: 'portrait'
});

方法名:FSOpen.webview.setOrientation
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
orientationStringportrait代表锁定屏幕为竖屏,landscape代表锁定屏幕为横屏,useSysConfig代表跟随系统设定。默认为portrait。

导航栏

接口名接口描述
webview.navbar.setTitle设置导航栏标题
webview.navbar.setMiddleBtn设置导航栏问号链接
webview.navbar.setLeftBtn设置导航栏左侧按钮
webview.navbar.setRightBtns设置导航栏右侧按钮
webview.navbar.removeRightBtns清除导航栏右侧所有按钮
webview.navbar.showMenu显示导航栏右侧“更多”菜单
webview.navbar.hideMenu隐藏导航栏右侧的“更多”菜单

设置导航栏标题

代码样例

FSOpen.webview.navbar.setTitle({
    title: '珍岛JSAPI'
});

方法名:FSOpen.webview.navbar.setTitle
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
titleString要显示的标题文本,默认为空

设置导航栏问号链接

可在导航栏标题文本后显示一个问号图标,并定义其点击后的跳转链接。

image1

代码样例

FSOpen.webview.navbar.setMiddleBtn({
    onClick: function() {
        FSOpen.webview.open({
            url: 'https://www.71360.com/aboutus/index.html'
        });
    }
});

方法名:FSOpen.webview.navbar.setMiddleBtn
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
onClickFunction定制按钮的点击回调

设置导航栏左侧按钮

图示见设置导航栏问号链接

代码样例

FSOpen.webview.navbar.setLeftBtn({
    text: '关闭',
    onClick: function() {
        FSOpen.webview.close();
    }
});

方法名:FSOpen.webview.navbar.setLeftBtn
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
textString定制按钮的文本
onClickFunction定制按钮的点击回调,如开发者声明了onClick,则需注意在最后根据需要调用FSOpen.webview.close()实现关闭当前页,否则Webview不会自动返回或关闭。如不声明onClick,Webview会自动关闭当前页。

设置导航栏右侧按钮

可以在导航栏右侧显示1个或多个自定义按钮。超过两个按钮则会在更多菜单中显示这些按钮。

图示见设置导航栏问号链接  

代码样例

var btns = [
    {btnId: '1', icon: 'fav', text: '收藏'},
    {btnId: '2', icon: 'add', text: '添加'}
];
FSOpen.webview.navbar.setRightBtns({
    items: btns,
    onClick: function(resp) {
        // {btnId: '1'}
        alert('点击了按钮:' + btns[resp.btnId - 1].text);
    }
});

方法名:FSOpen.webview.navbar.setRightBtns
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
itemsArray[Object]定制按钮的属性数组。超过两个按钮则会在更多菜单中显示这些按钮。如同一个页面调用了FSOpen.webview.navbar.showMenu,则setRightBtns中设置的按钮只显示第一个。
onClickFunction定制按钮的点击回调。用户点击菜单的btnId会传入onClick

items中每个item对象参数说明

参数类型必须说明
btnIdString每个item的唯一标示
iconString预置icon的值,优先级高于text参数,即优先显示图标。
textString每个item的文本标签

item对象中icon参数可选填值

说明
fav收藏
add添加
calendar日历
search搜索
delete删除
scan扫描
structure架构
edit编辑
group群组
individual个人
more更多
setting设置
chat聊天
save保存

image3

onClick点击回调参数属性说明:

参数类型说明
btnIdStringitem的id

清除导航栏右侧所有按钮

注意此接口只会删除掉通过FSOpen.webview.navbar.setRightBtns设定的按钮,不会删除FSOpen.webview.navbar.showMenu设定的菜单。

代码样例

FSOpen.webview.navbar.removeRightBtns();

方法名:FSOpen.webview.navbar.removeRightBtns
JS版本:2.0.0
客户端支持版本:5.4.0及以上

显示"更多"菜单

显示一个珍岛提供的“更多”菜单,菜单中预置了一些常用的功能实现,比如收藏、转发到企信、转发到分享、转发到微信等。
image2

通常开发者仅需自定义需要显示的菜单列表,无需再为每个功能提供实现,但如果有自己的特殊需求,也可以自定义实现各菜单的全局回调函数,详情可参考本文Webview-“更多”菜单回调章节。

代码样例

FSOpen.webview.navbar.showMenu({
    menuList: [
        'service:favorite',
        'share:toConversation',
        'share:toFeed',
        'separator',
        'share:toCRMContact',
        'share:toWXFriend',
        'share:toWXMoments',
        'share:toQQFriend',
        'share:viaMail',
        'share:viaSMS',
        'separator', //分隔符,可根据需要多次使用
        'page:refresh',
        'page:copyURL',
        'page:generateQR',
        'page:openWithBrowser'
    ]
});

方法名:FSOpen.webview.navbar.showMenu
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
menuListArray[String]定制的菜单项menuItem列表,默认全部显示

menuItem说明:

参数说明
service:favorite收藏当前页面
share:toConversation转发到企信
share:toFeed转发到工作流
share:toCRMContact转发给CRM联系人
share:toWXFriend分享给微信好友
share:toWXMoments分享到微信朋友圈
share:toQQFriend分享给QQ好友
share:viaMail通过邮件转发
share:viaSMS通过短信转发
page:refresh页面刷新
page:copyURL复制链接
page:generateQR生成二维码
page:openWithBrowser在浏览器中打开
separator分隔符,用来分组菜单项,可根据需要同时在多个位置使用。

隐藏"更多"菜单

代码样例

FSOpen.webview.navbar.hideMenu();

方法名:FSOpen.webview.navbar.hideMenu
JS版本:2.0.0
客户端支持版本:5.4.0及以上

“更多”菜单回调

通过FSOpen.webview.navbar.showMenu设置的“更多”菜单,在用户点击的时候会触发对应的全局回调处理。开发者可实现这些回调以自定义具体(转发)的内容信息。

接口名接口描述
webview.menu.onShareToConversation“更多”菜单回调:转发到企信
webview.menu.onShareToFeed“更多”菜单回调:转发到“工作”
webview.menu.onShareToCRMContact“更多”菜单回调:转发到CRM联系人
webview.menu.onShareToWXFriend“更多”菜单回调:转发给微信好友
webview.menu.onShareToWXMoments“更多”菜单回调:转发到微信朋友圈
webview.menu.onShareToQQFriend“更多”菜单回调:转发给QQ好友
webview.menu.onShareViaSMS“更多”菜单回调:通过短信转发
webview.menu.onShareViaMail“更多”菜单回调:通过邮件转发

“更多”菜单回调:转发到企信

代码样例

FSOpen.webview.menu.onShareToConversation({
    title: '珍岛逍客',
    desc: '移动办公 自在珍岛',
    link: 'http://www.71360.com',
    imgUrl: 'https://www.71360.com/static/img/index/logo.png?v=5.1.5',
    onSuccess: function(resp) {
        // 可以在这里做些分享数据统计
    },
    onFail: function(error) {
        if (error.errorCode == 40050) {
            alert('用户取消分享');
            return;
        }
        alert('操作失败,错误码:' + error.errorCode);
    }
});

方法名:FSOpen.webview.menu.onShareToConversation
JS版本:2.0.0
客户端支持版本:5.4.0及以上

调用参数说明:

参数类型必须说明
titleString分享标题,默认当前页面标题(</code>标签内容)</td></tr><tr><td>desc</td><td>String</td><td>否</td><td>分享摘要描述,默认当前页面描述(<code><meta name="description" content="网页摘要内容在这里填写"></code>标签中的内容),取不到则显示页面URL。</td></tr><tr><td>link</td><td>String</td><td>否</td><td>分享链接地址,默认当前页面链接</td></tr><tr><td>imgUrl</td><td>String</td><td>否</td><td>分享缩略图地址,默认为珍岛预置图标</td></tr></tbody></table><p></p><h4 id="-">“更多”菜单回调:转发到工作流</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareToFeed({    title: '珍岛逍客',    desc: '移动办公 自在珍岛',    link: 'http://www.71360.com',    imgUrl: 'https://www.71360.com/static/img/index/logo.png?v=5.1.5',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareToFeed<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>title</td><td>String</td><td>否</td><td>分享标题,默认当前页面标题</td></tr><tr><td>desc</td><td>String</td><td>否</td><td>分享摘要描述,默认当前页面描述(<code><meta name="description" content="网页摘要内容在这里填写"></code>标签中的内容),取不到则显示页面URL。</td></tr><tr><td>link</td><td>String</td><td>否</td><td>分享链接地址,默认当前页面链接</td></tr><tr><td>imgUrl</td><td>String</td><td>否</td><td>分享缩略图地址,默认为珍岛内置图标</td></tr></tbody></table><p></p><h4 id="-crm-">“更多”菜单回调:转发给CRM联系人</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareToCRMContact({    link: location.href,    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareToCRMContact<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>link</td><td>String</td><td>否</td><td>要转发的页面链接</td></tr></tbody></table><p></p><h4 id="-">“更多”菜单回调:分享给微信好友</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareToWXFriend({    title: '珍岛逍客',    link: 'http://www.71360.com',    imgUrl: 'https://www.71360.com/static/img/index/logo.png?v=5.1.5',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareToWXFriend<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>title</td><td>String</td><td>否</td><td>分享标题,默认当前页面标题</td></tr><tr><td>link</td><td>String</td><td>否</td><td>分享链接地址,默认当前页面链接</td></tr><tr><td>imgUrl</td><td>String</td><td>否</td><td>分享缩略图地址,默认为珍岛内置图标</td></tr></tbody></table><p></p><h4 id="-">“更多”菜单回调:分享到微信朋友圈</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareToWXMoments({    title: '珍岛逍客',    link: 'http://www.71360.com',    imgUrl: 'https://www.71360.com/static/img/index/logo.png?v=5.1.5',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareToWXMoments<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>title</td><td>String</td><td>否</td><td>分享标题,默认当前页面标题</td></tr><tr><td>link</td><td>String</td><td>否</td><td>分享链接地址,默认当前页面链接</td></tr><tr><td>imgUrl</td><td>String</td><td>否</td><td>分享缩略图地址,默认为珍岛内置图标</td></tr></tbody></table><p></p><h4 id="-qq-">“更多”菜单回调:分享给QQ好友</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareToQQFriend({    title: '珍岛逍客',    desc: '移动办公 自在珍岛',    link: 'http://www.71360.com',    imgUrl: 'https://www.71360.com/static/img/index/logo.png?v=5.1.5',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareToQQFriend<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>title</td><td>String</td><td>否</td><td>分享标题,默认当前页面标题</td></tr><tr><td>desc</td><td>String</td><td>否</td><td>分享摘要描述,默认当前页面标题</td></tr><tr><td>link</td><td>String</td><td>否</td><td>分享链接地址,默认当前页面链接</td></tr><tr><td>imgUrl</td><td>String</td><td>否</td><td>分享缩略图地址,默认为珍岛内置图标</td></tr></tbody></table><p></p><h4 id="-">“更多”菜单回调:通过短信转发</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareViaSMS({    content: '移动办公,自在珍岛 {url}',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareViaSMS<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>content</td><td>String</td><td>否</td><td>转发内容,最多140字,可使用<code>{url}</code>(5个字符)来表示当前页面的URL,后台会在最终内容中替换。</td></tr></tbody></table><p></p><h4 id="-">“更多”菜单回调:通过邮件转发</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.menu.onShareViaMail({    title: '珍岛逍客',    content: '移动办公,自在珍岛 {url}',    onSuccess: function(resp) {        // 可以在这里做些分享数据统计    },    onFail: function(error) {        if (error.errorCode == 40050) {            alert('用户取消分享');            return;        }        alert('操作失败,错误码:' + error.errorCode);    } });</code></pre><p></p><p>方法名:FSOpen.webview.menu.onShareViaMail<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>title</td><td>String</td><td>否</td><td>转发邮件标题</td></tr><tr><td>content</td><td>String</td><td>否</td><td>转发邮件内容,可使用<code>{url}</code>(5个字符)来表示当前页面的URL,后台会在最终内容中替换。</td></tr></tbody></table><p></p><h3 id="-">页面</h3><p></p><table class="api-list"><thead><tr class="firstRow"><td>接口名</td><td>接口描述</td></tr></thead><tbody><tr><td>webview.page.copyURL</td><td>复制当前页面链接</td></tr><tr><td>webview.page.generateQR</td><td>生成当前页面二维码</td></tr><tr><td>webview.page.openWithBrowser</td><td>用浏览器打开当前页面</td></tr><tr><td>webview.page.refresh</td><td>刷新页面</td></tr></tbody></table><p></p><h4 id="-">复制当前页面链接</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.page.copyURL();</code></pre><p></p><p>方法名:FSOpen.webview.page.copyURL<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h4 id="-">生成当前页面二维码</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.page.generateQR();</code></pre><p></p><p>方法名:FSOpen.webview.page.generateQR<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h4 id="-">用浏览器打开当前页面</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.page.openWithBrowser();</code></pre><p></p><p>方法名:FSOpen.webview.page.openWithBrowser<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h4 id="-">刷新页面</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.page.refresh();</code></pre><p></p><p>方法名:FSOpen.webview.page.refresh<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h3 id="bounce">Bounce</h3><p></p><p>此类接口仅限于iOS系统。</p><p><br/></p><table class="api-list"><thead><tr class="firstRow"><td>接口名</td><td>接口描述</td></tr></thead><tbody><tr><td>webview.bounce.enable</td><td>启用Bounce</td></tr><tr><td>webview.bounce.disable</td><td>禁用Bounce</td></tr></tbody></table><p></p><h4 id="-webview-bounce-">启用webview的bounce效果</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.bounce.enable();</code></pre><p></p><p>方法名:FSOpen.webview.bounce.enable<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h4 id="-webview-bounce-">禁用webview的bounce效果</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.bounce.disable();</code></pre><p></p><p>方法名:FSOpen.webview.bounce.disable<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h3 id="-">下拉刷新</h3><p><br/><br/></p><table class="api-list"><thead><tr class="firstRow"><td>接口名</td><td>接口描述</td></tr></thead><tbody><tr><td>webview.pullRefresh.enable</td><td>启用下拉刷新</td></tr><tr><td>webview.pullRefresh.disable</td><td>禁用下拉刷新</td></tr><tr><td>webview.pullRefresh.stop</td><td>停止刷新</td></tr></tbody></table><p></p><h4 id="-">启用下拉刷新</h4><p></p><p>开启后,用户可在页面里下拉(刷新)。</p><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.pullRefresh.enable({    onPullRefresh: function() {        setTimeout(function() {            alert('数据加载成功');            FSOpen.webview.pullRefresh.stop();        }, 3000);    },    onSuccess: function() {        alert('现在下拉试试');    } });</code></pre><p></p><p>方法名:FSOpen.webview.pullRefresh.enable<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><p>调用参数说明:</p><p></p><table><thead><tr class="firstRow"><th>参数</th><th>类型</th><th>必须</th><th>说明</th></tr></thead><tbody><tr><td>onPullRefresh</td><td>Function</td><td>否</td><td>用户下拉到临界值时触发的回调。可在此回调里进行一些延时操作,并在延时操作完毕后通过对应的<code>webview.pullRefresh.stop</code>来还原。</td></tr></tbody></table><p></p><h4 id="-">禁用下拉刷新</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.pullRefresh.disable();</code></pre><p></p><p>方法名:FSOpen.webview.pullRefresh.disable<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p></p><h4 id="-">收起下拉刷新</h4><p></p><p>代码样例</p><p></p><pre><code class="lang-javascript">FSOpen.webview.pullRefresh.stop();</code></pre><p></p><p>方法名:FSOpen.webview.pullRefresh.stop<br/>JS版本:2.0.0<br/>客户端支持版本:5.4.0及以上</p><p><br/></p> </div> <div class="recommended re_relat"> <div class="title">相关文档</div> <ul class="list re_list"> <li><a href="/api/158/453.html">表单</a></li> <li><a href="/api/159/504.html">CRM基础接口</a></li> <li><a href="/api/156/475.html">概述</a></li> <li><a href="/api/157/449.html">启动器</a></li> <li><a href="/api/158/452.html">弹层</a></li> <li><a href="/api/156/442.html">Getting Started</a></li> <li><a href="/api/159/503.html">CRM业务接口</a></li> <li><a href="/api/157/448.html">Webview</a></li> <li><a href="/api/157/447.html">弹层</a></li> <li><a href="/api/156/441.html">概述</a></li> <li><a href="/api/159/487.html">审批流程接口</a></li> <li><a href="/api/157/445.html">媒体</a></li> <li><a href="/api/157/452.html">弹层</a></li> <li><a href="/api/156/379.html">概述</a></li> <li><a href="/api/158/447.html">弹层</a></li> <li><a href="/api/159/513.html">CRM基础接口V2</a></li> <li><a href="/api/157/444.html">通用</a></li> <li><a href="/api/157/451.html">容器</a></li> <li><a href="/api/158/454.html">基础类库</a></li> <li><a href="/api/159/515.html">ERP集成接口</a></li> </ul> <div class="clear"></div> </div> <style type="text/css"> /* 增加的样式 */ .center .show-body .re_relat { width: 100%; } .show-body .recommended .re_list li { width: 46%; float: left; } .clear{ clear: both; } </style> </div> </div> </div> </div> </div> </div> <footer class="clearfix footer"> <div class="container-02"> <div class="clearfix contact-menu"> <div class="footer-contact"> <div class="box"> <div class="tel"> <div class="">咨询热线</div> <div><a href="tel:400-10-71360" title="">400-10-71360</a></div> <div class="">客户成功</div> <div><a href="tel:19121521615" title="">19121521615</a></div> </div> <div class="div-01"> <div> <a href="https://tyuntt.71360.com/chat.html/?ci=23a416dbe06bbb2e276904a8e8dab8d8&ty=1"> 在线咨询 </a> </div> <div> <a href="javascript:void(0)"class="apply-for-click" > 意见反馈 </a> </div> </div> </div> </div> <div class="menu"> <ul class="clearfix list"> <li> <div class="box"> <div class="titleBig"><span>热门产品</span></div> <div class="child"> <div> <a href="https://tcloud.marketingforce.com/domestic.html"> T云国内版 </a> </div> <div> <a href="https://tcloud.marketingforce.com/overseas.html"> T云外贸版 </a> </div> <div> <a href="https://wecomscrm.marketingforce.com"> 珍客SCRM企微版 </a> </div> <div> <a href="https://biz.marketingforce.com/mall.html"> 智慧商城 </a> </div> <div> <a href="https://sales.marketingforce.com/namecard.html"> 臻推宝 </a> </div> <div> <a href="https://sales.marketingforce.com/cdp.html"> 珍客CDP </a> </div> </div> </div> </li> <li> <div class="box"> <div class="titleBig"><span>解决方案</span></div> <div class="child"> <div> <a href="https://www.marketingforce.com/solutions/motor.html"> 汽车行业客户资产解决方案 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/retail.html"> 新零售营销解决方案 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/finance.html"> 金融业客户资产运营解决方案 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/commerce.html"> 跨境商业解决方案 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/cloud.html"> 珍岛云数智方略解决方案 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/college.html"> 院校智能营销产教融合平台 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/park.html"> 园区智能营销数字化生态创新 </a> </div> <div> <a href="https://www.marketingforce.com/solutions/telecom.html"> 运营商企客群智能营销服务平台 </a> </div> </div> </div> </li> <li> <div class="box"> <div class="titleBig"><span>关于珍岛</span></div> <div class="child"> <div> <a href="https://www.marketingforce.com/about/aboutus.html"> 珍岛简介 </a> </div> <div> <a href="https://www.marketingforce.com/about/honor.html"> 荣誉资质 </a> </div> <div> <a href="https://www.marketingforce.com/about/news.html"> 新闻热点 </a> </div> <div> <a href="https://www.marketingforce.com/about/research.html"> 产学研 </a> </div> <div> <a href="https://jobs.marketingforce.com"> 加入我们 </a> </div> <div> <a href="https://campus.marketingforce.com"> 校园招聘 </a> </div> </div> </div> </li> <li> <div class="box"> <div class="titleBig"><span>渠道加盟</span></div> <div class="child"> <div> <a href="https://www.marketingforce.com/agent/d_agent.html"> 渠道合作(国内) </a> </div> <div> <a href="https://www.marketingforce.com/agent/o_agent.html"> 渠道合作(外贸) </a> </div> </div> </div> </li> <li class="focusUs"> <div class="box"> <div class="titleBig"><span>关注珍岛</span></div> <div class="child ewms"> <div class="active" > <a href="javascript:void(0)"> <div class="title">珍岛集团</div> <div class="ewm"> <img src="https://www.marketingforce.com/zh/images/zd_erm.jpg" title="珍岛集团" alt="珍岛集团"> </div> </a> </div> <div > <a href="javascript:void(0)"> <div class="title">珍岛T云</div> <div class="ewm"> <img src="https://www.marketingforce.com/zh/images/tyun_ewm.jpg" title="珍岛T云" alt="珍岛T云"> </div> </a> </div> <div > <a href="https://www.marketingforce.com/about/newmatrix.html"> <div class="title">新媒体矩阵</div> </a> </div> <div > <a href="https://help.marketingforce.com/doc.html"> <div class="title">帮助文档</div> </a> </div> </div> </div> </li> </ul> </div> </div> <div class="clearfix friendShip"> <ul class="clearfix list"> <li> <div class="box"> <div class="title"> <span>更多推荐</span> </div> <a href="https://tcloud.marketingforce.com/college.html"> T云院校版</a> <a href="https://tcloud.marketingforce.com/tele.html"> T云运营商版</a> <a href="https://tcloud.marketingforce.com/digital/aievaluate.html"> AI测评</a> <a href="https://tcloud.marketingforce.com/sites/multilingual.html"> 多语言站点</a> <a href="https://biz.marketingforce.com/shop.html"> 智慧门店</a> <a href="https://tcloud.marketingforce.com/ideas/smartwriting.html"> 臻文</a> <a href="https://tcloud.marketingforce.com/ideas/intelligentvideo.html"> 臻视</a> <a href="https://tcloud.marketingforce.com/content/baomengkeyword.html"> 宝盟</a> <a href="https://co.marketingforce.com/talent.html"> 臻人才</a> <a href="https://biz.marketingforce.com/channel.html"> 智慧渠道</a> <a href="https://tcloud.marketingforce.com/digital/monitor.html"> T-monitor</a> <a href="https://tcloud.marketingforce.com/content/media.html"> 多元媒体</a> <a href="https://tcloud.marketingforce.com/mob/adpushing.html"> 随推</a> <a href="https://tcloud.marketingforce.com/mob/h5spread.html"> 随传</a> <a href="https://service.marketingforce.com/talk.html"> 智能客服</a> <a href="https://tcloud.marketingforce.com/mob/truecode.html"> 宝码</a> <a href="https://biz.marketingforce.com/netteaching.html"> 智慧学院</a> <a href="https://sales.marketingforce.com/crm.html"> 臻管家</a> </div> </li> <li> <div class="box"> <div class="title"> <span>用户热搜</span> </div> <a href="https://www.marketingforce.com/ai/characterrecog.html"> 文字识别</a> <a href="https://www.marketingforce.com/ai/videoproduction.html"> 视频智能制作</a> <a href="https://www.marketingforce.com/ai/lexicalanalysis.html"> 词法分析</a> <a href="https://www.marketingforce.com/ai/keywordextract.html"> 关键词提取</a> <a href="https://www.marketingforce.com/ai/originality.html"> 原创度检测</a> <a href="https://www.marketingforce.com/ai/newssummary.html"> 新闻摘要</a> <a href="https://www.marketingforce.com/ai/textgeneration.html"> 文本生成</a> <a href="https://www.marketingforce.com/ai/textdifference.html"> 文本差异对比</a> <a href="https://www.marketingforce.com/ai/imagegeneration.html"> 智能图像生成</a> <a href="https://www.marketingforce.com/ai/intelligentrobot.html"> 智能会话机器人</a> </div> </li> </ul> </div> <div class="clearfix copyright"> <a href="tel:400-10-71360" class="tel">售前咨询:400-10-71360</a> <div class="text-01"> <a href="https://www.marketingforce.com/legal/privacy.html" title="隐私保护" class="a-01">隐私保护</a> <a href="https://www.marketingforce.com/legal/statement.html" title="法律声明" class="a-01">法律声明</a> <a href="https://www.marketingforce.com/about/contact.html" title="联系我们" class="a-01">联系我们</a> </div> <div class="text-02"> <span class="span-01"> © 2010 - 2023 珍岛信息技术(上海)股份有限公司 版权所有 </span> <span class="span-02"> <a href="http://wap.scjgj.sh.gov.cn/businessCheck/verifKey.do?showType=extShow&serial=9031000020160902153831000001194643-SAIC_SHOW_310000-4028e4c74c2738a7014c368b00851a7c808&signData=MEUCICT2Qbx5+dDdf9i5LqtW67f2Ws0HPdeuHM+FQ4P4+3BaAiEA9uCbdH44aUkhQz4Sw+BKFZTRy7XDqtGaDYJDggZ5WUs=" target="_blank"> <img src="https://developer.marketingforce.com/zh/images/beian-02.png" title="" alt=""> </a> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31010902001233" target="_blank"> <img src="https://developer.marketingforce.com/zh/images/beian-01.png" title="" alt=""> 沪公网安备31010902001233号 </a> <a href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank"> 沪ICP备09078302号-278 </a> </span> </div> </div> </div> </footer> <footer class="clearfix footer-m"> <div class="container-02"> <div class="clearfix friendShip"> <ul class="clearfix list"> <li class="hot"> <div class="box"> <div class="title"> <span>热门产品</span> </div> <a href="https://tcloud.marketingforce.com/domestic.html" title="">T云国内版</a> <a href="https://tcloud.marketingforce.com/overseas.html" title="">T云外贸版</a> <a href="https://wecomscrm.marketingforce.com" title="">珍客SCRM企微版</a> <a href="https://biz.marketingforce.com/mall.html" title="">智慧商城</a> <a href="https://sales.marketingforce.com/namecard.html" title="">臻推宝</a> <a href="https://sales.marketingforce.com/cdp.html" title="">珍客CDP</a> </div> </li> </ul> </div> <div class="clearfix copyright"> <div class="text-01"> <a href="https://www.marketingforce.com/legal/privacy.html" title="隐私保护" class="a-01">隐私保护</a> <a href="https://www.marketingforce.com/legal/statement.html" title="法律声明" class="a-01">法律声明</a> <a href="https://www.marketingforce.com/about/contact.html" title="联系我们" class="a-01">联系我们</a> </div> <a href="tel:400-10-71360" class="tel">售前咨询:400-10-71360</a> <div class="text-02"> <span class="span-01"> © 2010 - 2023 珍岛信息技术(上海)股份有限公司 版权所有 </span> <span class="span-02"> <a href="http://wap.scjgj.sh.gov.cn/businessCheck/verifKey.do?showType=extShow&serial=9031000020160902153831000001194643-SAIC_SHOW_310000-4028e4c74c2738a7014c368b00851a7c808&signData=MEUCICT2Qbx5+dDdf9i5LqtW67f2Ws0HPdeuHM+FQ4P4+3BaAiEA9uCbdH44aUkhQz4Sw+BKFZTRy7XDqtGaDYJDggZ5WUs="> <!--<img src="https://developer.marketingforce.com/zh/images/beian-02.png" title="" alt="">--> </a> <a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31010902001233"> <!--<img src="https://developer.marketingforce.com/zh/images/beian-01.png" title="" alt="">--> 沪公网安备31010902001233号 </a> <a href="https://beian.miit.gov.cn/#/Integrated/index"> 沪ICP备09078302号-278 </a> </span> </div> </div> </div> </footer> <!--<div class="rightWindowTel"> <div class="item"> <span class="icon"> <img src="https://developer.marketingforce.com/zh/images/icon/tel.png" title="" alt=""> </span> <span class="tel">400-10-71360</span> <div class="returnTop" id="returnTop"> <img src="https://developer.marketingforce.com/zh/images/icon/returnTop.svg" title="" alt=""> </div> </div> </div>--> <!--移动端右侧导航 start--> <div class="mMenu-mask"></div> <div class="mNavRightAside"> <div class="mDropdown-wrap"> <div class="mMenu"> <dl> <dt class="level-01"> <a href="javaScript:;" title="">产品</a> </dt> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">营销云</a> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">T云</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/domestic.html" title="">国内版</a> <a href="https://tcloud.marketingforce.com/overseas.html" title="">外贸版</a> <a href="https://tcloud.marketingforce.com/group.html" title="">集团版</a> <a href="https://tcloud.marketingforce.com/park.html" title="">园区版</a> <a href="https://tcloud.marketingforce.com/college.html" title="">院校版</a> <a href="https://tcloud.marketingforce.com/tele.html" title="">运营商版</a> <a href="https://tcloud.marketingforce.com/global.html" title="">全球版</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">门户平台</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/sites/multilingual.html" title="">多语言站点</a> <a href="https://tcloud.marketingforce.com/sites/miniprogram.html" title="">小程序站点</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">内容营销</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/content/praise.html" title="">企业知道</a> <a href="https://tcloud.marketingforce.com/content/videocube.html" title="">视频魔方</a> <a href="https://tcloud.marketingforce.com/content/cloudenginekeyword.html" title="">云引擎</a> <a href="https://tcloud.marketingforce.com/content/baomengkeyword.html" title="">宝盟</a> <a href="https://tcloud.marketingforce.com/content/confidence.html" title="">臻信通</a> <a href="https://tcloud.marketingforce.com/content/wemediamatrix.html" title="">自媒体矩阵</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">智能创意</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/ideas/smartwriting.html" title="">臻文</a> <a href="https://tcloud.marketingforce.com/ideas/intelligentimage.html" title="">臻图</a> <a href="https://tcloud.marketingforce.com/ideas/intelligentvideo.html" title="">臻视</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">数据营销</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/digital/aievaluate.html" title="">AI测评</a> <a href="https://tcloud.marketingforce.com/digital/monitor.html" title="">T-monitor</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">移动营销</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/mob/adpushing.html" title="">随推</a> <a href="https://tcloud.marketingforce.com/mob/h5spread.html" title="">随传</a> <a href="https://tcloud.marketingforce.com/mob/showtime.html" title="">企秀场</a> <a href="https://tcloud.marketingforce.com/mob/truecode.html" title="">宝码</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">广告营销</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://tcloud.marketingforce.com/ad/webad.html" title="">再营销</a> <a href="https://tcloud.marketingforce.com/ad/mobad.html" title="">移动再营销</a> <a href="https://tcloud.marketingforce.com/ad/dsp.html" title="">臻优DSP</a> <a href="https://tcloud.marketingforce.com/ad/ssp.html" title="">臻优SSP</a> <a href="https://tcloud.marketingforce.com/ad/dmp.html" title="">臻优DMP</a> </div> </div> </div> <div class="menu-ctrl"> <div class="level-03"> <a href="javascript:void(0)" title="">增值服务</a> </div> <div class="menu-ctrl"> <div class="level-04"> <a href="https://dm.marketingforce.com/" title="">数字媒体自助</a> <a href="https://market.marketingforce.com/" title="">云应用市场</a> </div> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">销售云</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://sales.marketingforce.com/scrm.html" title="">珍客SCRM专业版</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://wecomscrm.marketingforce.com" title="">珍客SCRM企微版</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://sales.marketingforce.com/cdp.html" title="">珍客CDP</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://sales.marketingforce.com/namecard.html" title="">臻推宝</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://tcloud.marketingforce.com/digital/seeking.html" title="">臻寻客</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://sales.marketingforce.com/crm.html" title="">臻管家</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://sales.marketingforce.com/zhenkecrm.html" title="">珍客CRM</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://biz.marketingforce.com/mall.html" title="">智慧商城</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://biz.marketingforce.com/netteaching.html" title="">智慧学院</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://biz.marketingforce.com/live.html" title="">云直播</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://co.marketingforce.com/opinion.html" title="">舆情分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://service.marketingforce.com/talk.html" title="">智能客服TTalk</a> </div> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">解决方案</a> </dt> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/motor.html" title="">汽车行业客户资产解决方案</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/retail.html" title="">新零售营销解决方案</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/finance.html" title="">金融业客户资产运营解决方案</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/commerce.html" title="">跨境商业解决方案</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/cloud.html" title="">珍岛云数智方略解决方案</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/college.html" title="">院校智能营销产教融合平台</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/park.html" title="">园区智能营销数字化生态创新平台</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/solutions/telecom.html" title="">运营商企客群智能营销服务平台</a> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">AI技术</a> </dt> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">自然语言处理</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/nlpservice.html" title="">NLP基础服务</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/translation.html" title="">文档翻译</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/lexicalanalysis.html" title="">词法分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textcorrection.html" title="">文本纠错</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/keywordextract.html" title="">关键词提取</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textdifference.html" title="">文本差异对比</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/keywordexpandsion.html" title="">关键词扩展</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textrepeat.html" title="">文本复述</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/newssummary.html" title="">新闻摘要</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textgeneration.html" title="">文本生成</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/emotionanalysis.html" title="">情感分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textrecommend.html" title="">文本推荐</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/textcategory.html" title="">智能文本分类</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/titlegeneration.html" title="">标题生成</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/sensitiveword.html" title="">敏感词检测</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/originality.html" title="">原创度检测</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/intelligentrobot.html" title="">智能会话机器人</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">图像技术</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/imagegeneration.html" title="">智能图像生成</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/characterrecog.html" title="">文字识别</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/facerecog.html" title="">人脸识别</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/imagesearch.html" title="">图像搜索</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/imagerecog.html" title="">图像监测识别</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">视频技术</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/videoproduction.html" title="">视频智能制作</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/videoanalysis.html" title="">视频内容分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/videoaudit.html" title="">视频内容审核</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/videocover.html" title="">视频封面选取</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">数据智能</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/knowledgegraph.html" title="">知识图谱</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/crowdorientation.html" title="">人群定向</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/platformanalysis.html" title="">跨平台数据分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/customeranalysis.html" title="">企业客情分析</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/marketingtest.html" title="">全网营销检测</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/ai/marketingengine.html" title="">营销引擎</a> </div> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">大数据</a> </dt> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/calculation.html" title="">大数据计算服务</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/emap.html" title="">E-MapReduce</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/elastic.html" title="">Elasticsearch</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/realtimecal.html" title="">实时计算</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/logservice.html" title="">日志服务SLS</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/opensearch.html" title="">开放搜索</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/dataresource.html" title="">数据资源平台</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/datavisual.html" title="">数据可视化</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/smartrecommend.html" title="">智能推荐</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/integration.html" title="">数据集成</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/bigdata/datahub.html" title="">数据总线(DataHub)</a> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">云计算</a> </dt> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">弹性计算</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/cloudserver.html" title="">云服务器CVM</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/appliserver.html" title="">轻量应用服务器</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/gpuserver.html" title="">GPU云服务器</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/virtualhost.html" title="">虚拟主机</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/batchcal.html" title="">批量计算</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/elasticcontainer.html" title="">弹性容器示例</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/containerserver.html" title="">容器服务ACK</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/serverless.html" title="">Serverless容器服务ASK</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/servicegrid.html" title="">服务网格ASM</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/elasticexpansion.html" title="">弹性伸缩</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/loadbalancing.html" title="">负载均衡</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/resourcearrang.html" title="">资源编排</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">存储</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/ebs.html" title="">块存储EBS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/oss.html" title="">对象存储COS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/nas.html" title="">文件存储NAS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/cpfs.html" title="">文件存储CPFS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/tablestore.html" title="">表格存储Tablestore</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/clouddisk.html" title="">云硬盘</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/backup.html" title="">云备份HBR</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">数据库</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/database.html" title="">云数据库</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/gdb.html" title="">图数据库GDB</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/dts.html" title="">数据传输服务DTS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/dms.html" title="">数据管理DMS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/databackup.html" title="">数据库备份DBS</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/dataauto.html" title="">数据库自治服务DAS</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">安全</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/ddos.html" title="">DDos防护</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/privatenet.html" title="">私有网络</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/nat.html" title="">NAT网关</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/appfirewall.html" title="">Web应用防火墙</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/ssl.html" title="">SSL证书</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/securitycenter.html" title="">云安全中心(态势感知)</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/cloudfirewall.html" title="">云防火墙</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/fortress.html" title="">堡垒机</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/terminalcontrol.html" title="">终端访问控制UEM</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/scanningthreat.html" title="">网站扫描威胁系统</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/accesscontrol.html" title="">访问控制</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/idservice.html" title="">应用身份服务(IDaaS)</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/datasecurity.html" title="">数据安全中心</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/dbaudit.html" title="">数据库审计</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/encryption.html" title="">加密服务</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/contentsecurity.html" title="">内容安全</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/riskidentify.html" title="">风险识别</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/realperson.html" title="">实人认证</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/penetration.html" title="">渗透测试</a> </div> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/emergencyres.html" title="">应急响应</a> </div> </div> </dd> <dd class="menu-ctrl"> <div class="level-02"> <a href="javascript:void(0)" title="">解决方案</a> </div> <div class="menu-ctrl"> <div class="level-03 noneArrow"> <a href="https://www.marketingforce.com/cloud/solutions.html" title="">珍岛云数智方略</a> </div> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">开发者</a> </dt> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://developer.marketingforce.com/paas.html" title="">PaaS平台概述</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://developer.marketingforce.com/guide.html" title="">开发指南</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://developer.marketingforce.com/api.html" title="">API文档</a> </div> </dd> </dl> <dl> <dt class="level-01"> <a href="javaScript:;" title="">了解珍岛</a> </dt> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/aboutus.html" title="">珍岛简介</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/honor.html" title="">荣誉资质</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/contact.html" title="">联系我们</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/news.html" title="">新闻热点</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/agent/d_agent.html" title="">渠道合作(国内)</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/agent/o_agent.html" title="">渠道合作(外贸)</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/research.html" title="">产学研</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://www.marketingforce.com/about/newmatrix.html" title="">新媒体矩阵</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://help.marketingforce.com/doc.html" title="">帮助文档</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://jobs.marketingforce.com" title="">加入我们</a> </div> </dd> <dd class="menu-ctrl"> <div class="level-02 noneArrow"> <a href="https://campus.marketingforce.com" title="">校园招聘</a> </div> </dd> </dl> <div class="slogn"> 入驻平台为您的营销力赋能! </div> <div class="registerBtn"> <a href="https://console.marketingforce.com/login/signUp">立即注册</a> </div> </div> </div> </div> <!--移动端右侧导航 end--> </div> <!-- cookie授权协议 --> <style> .globa-cookie{ padding: 20px 50px; display: flex; justify-content: space-between; background-color: rgba(128, 133, 139, .9); position: fixed; bottom: 0; width: 100%; left: 0; align-items: center; display: none; z-index: 10000000; } .globa-cookie .info{ color: #ffffff; font-size: 14px; flex: 1; } .globa-cookie .info .title{ font-weight: bold; font-size: 16px; line-height: 32px; } .globa-cookie .yes-no{ display: flex; } .globa-cookie .yes-no button{ width: 108px; height: 40px; margin-right: 10px; cursor: pointer; position: relative; overflow: hidden; z-index: 10; } .globa-cookie .yes-no button::after{ content: ' '; display: block; width: 100%; height: 100%; position: absolute; left: -100%; top: 0; background: #ffffff; transition: all 0.3s; z-index: -1; } .globa-cookie .yes-no button:hover::after{ left: 0; } .globa-cookie .yes-no button:hover{ color: #1e5096; border: 1px solid #ffffff; } .globa-cookie .yes-no .yes{ background-color: #1e5096; font-size: 14px; color: #ffffff; border: 1px solid #1e5096; } .globa-cookie .yes-no .no{ background-color: none; background: none; border: 1px solid #ffffff; font-size:14px; color: #ffffff; } @media screen and (max-width: 768px) { .globa-cookie{ flex-flow: column; z-index: 1000000; } .globa-cookie .yes-no{ margin-top: 20px; width: 100%; justify-content: center; } } .xz-button a { color: #fff; width: 180px; height: 35px; line-height: 35px; border-radius: 30px; text-align: center; display: inline-block; background: #f45f1d; } </style> <div class="globa-cookie"> <div class="info"> <div class="title">网站隐私授权</div> <div class="desc"> 我们将使用 cookie 来个性化改善您使用我们网站的体验。您可以点击接受按钮,将视为您同意所有相关 cookie 的使用,您也可以拒绝网站使用 cookie 。 </div> </div> <div class="yes-no"> <button class="no" onclick="noSetCokie()"> 拒绝 </button> <button class="yes" onclick="yesSetCokie()" >接受</button> </div> </div> <!-- 申请试用弹框 --> <section class="global-apply-for"> <div class="main"> <div class="top global-m-hide"> <div class="title">留言、咨询与反馈</div> <div class="desc">我们会在1个工作日内和您联系(工作时间 周一至周五 9:00-18:00)</div> <img class="close" src="https://developer.marketingforce.com/images/close1.png" alt=""> </div> <div class="detail"> <div class="title-top global-m-show">留言、咨询与反馈</div> <div class="cover"> <img src="https://developer.marketingforce.com/images/bg1.png" alt=""> </div> <div class="form"> <section class="global-m-hide"> <div class="err-app-main"> <img class="xx" src="https://developer.marketingforce.com/images/das.png" alt=""> <span>请填写联系方式</span> </div> </section> <form> <!-- 12申请使用 21下载 --> <input type="hidden" name="nc_token"> <input type="hidden" name="csessionid"> <input type="hidden" name="sig"> <div class="item"> <input type="text" class="input" autocomplete="off" name="name" placeholder="请输入您的姓名"> </div> <div class="global-m-show"><div class="err-mobile err-mobile-name"></div></div> <div class="item"> <input type="text" class="input" autocomplete="off" name="phone" placeholder="请输入您的联系方式" errhint="请填写正确的联系方式" oninput="value=value.replace(/[^\d]/g,'')" maxlength="11"> </div> <div class="global-m-show"> <div class="err-mobile err-mobile-phone"></div></div> <div class="item"> <input type="text" class="input pcode" autocomplete="off" name="pcode" placeholder="请输入您的短信验证码" errhint="请填写正确的短信验证码"> <input type="button" class="pcodebtn" id="sendBtn" value="发送验证码" onclick="sendCode()"> </div> <div class="global-m-show"> <div class="err-mobile err-mobile-pcode"></div></div> <div class="item"> <textarea name="message" class="input maxh" placeholder="请输入您要咨询、反馈的内容"></textarea> </div> <div class="item"> <div id="applync"></div> </div> <div class="global-m-show"> <div class="err-mobile err-mobile-haudong"></div></div> <div class="global-m-show"> <div class="item protocol"> <input type="checkbox" name="is-xy" lay-skin="primary" checked="" errhint="请阅读并同意《隐私保护协议》《法律声明》"> 我已阅读并同意 <a href="https://www.marketingforce.com/legal/privacy.html" target="_blank">《隐私保护协议》</a><a href="https://www.marketingforce.com/legal/statement.html" target="_blank">《法律声明》</a> </div> </div> <div class="global-m-show"> <div class="err-mobile err-mobile-xieyi"></div></div> <div class="global-m-hide"> <div class="item protocol"> <input type="checkbox" name="is-xy" lay-skin="primary" checked="" errhint="请阅读并同意《隐私保护协议》《法律声明》"> 我已阅读并同意 <a href="https://www.marketingforce.com/legal/privacy.html" target="_blank">《隐私保护协议》</a><a href="https://www.marketingforce.com/legal/statement.html" target="_blank">《法律声明》</a> </div> </div> <div class="item"> <button type="submit" class="submit">提交</button> </div> </form> </div> </div> </div> </section> <div id="openxy"> <p class="title">网站提交留言-隐私协议</p> <p>感谢您浏览本网站相关信息!</p> <p>1、本协议是用户(“您”)与本网站所订立的契约,为方便您深入了解业务及提交需求等,本网站将为您提供更加个性化的留言表单服务,您在提交留言表单时,我们可能会收集和使用您的相关信息。我们非常重视用户信息的保护,我们将按照法律法规要求,采取相应的安全保护措施。 </p> <p>2、除非您已充分阅读、理解并同意接受和遵守本协议,否则,请勿提交留言表单。 您如果继续提交即表示接受本协议,本协议即在您与本网站之间产生法律效应。 </p> <div style="text-align: center;padding-top:30px;"> <button style=" width:120px;height:48px; background-color: #1e5096; font-size: 14px; color: #ffffff; border: 1px solid #1e5096;" onclick="closexieyi()">确认</button> </div> </div> <script src="https://developer.marketingforce.com/js/jquery-3.5.1/jquery-3.5.1.min.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript" charset="utf-8" src="https://developer.marketingforce.com/js/layer/layer.js"></script> <script src="https://g.alicdn.com/AWSC/AWSC/awsc.js"></script> <script src="https://developer.marketingforce.com/zh/js/public.js" type="text/javascript" charset="utf-8"></script> <script type="text/javascript"> (function() { var tm = document.createElement("script"); tm.src = "https://tm.71360.com/tm.js?u=6fc8e7db108e25ae639efa42808fcf15"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(tm, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?d0faefccf006e0d3e343f15dfcc1eb6d"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <script> var _hmt = _hmt || []; (function() { var hm = document.createElement("script"); hm.src = "https://hm.baidu.com/hm.js?8103edbea4bc956d7c4ac52a904bd9e4"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(hm, s); })(); </script> <!-- cookie 授权逻辑 --> <script> if(!localStorage.getItem('set-cookie')){ $('.globa-cookie').css({ 'display':'flex' }) } function noSetCokie() { localStorage.setItem('set-cookie', 'no') $('.globa-cookie').hide() localStorage.setItem('_setcookie', 'delcookie') window.location.reload() // 重载 刷新登陆状态 } function yesSetCokie() { localStorage.setItem('set-cookie', 'yes') $('.globa-cookie').hide() } </script> </body> </html>