blog.csdn.net Open in urlscan Pro
117.149.203.69  Public Scan

URL: https://blog.csdn.net/weixin_44176696/article/details/105952189
Submission: On February 17 via api from US — Scanned from DE

Form analysis 1 forms found in the DOM

<form id="commentRewardForm">
  <div class="ipt-box">
    <label for="txtName">祝福语</label>
    <div class="ipt-btn-box">
      <input type="text" name="name" id="txtName" autocomplete="off" maxlength="50">
      <a class="btn-ipt btn-random"></a>
    </div>
    <p class="notice">请填写红包祝福语或标题</p>
  </div>
  <div class="ipt-box">
    <label for="txtSendAmount">红包数量</label>
    <div class="ipt-txt-box">
      <input type="text" name="sendAmount" maxlength="4" id="txtSendAmount" placeholder="请填写红包数量(最小10个)" autocomplete="off">
      <span class="after-txt">个</span>
    </div>
    <p class="notice">红包个数最小为10个</p>
  </div>
  <div class="ipt-box">
    <label for="txtMoney">红包总金额</label>
    <div class="ipt-txt-box error">
      <input type="text" name="money" maxlength="5" id="txtMoney" placeholder="请填写总金额(最低5元)" autocomplete="off">
      <span class="after-txt">元</span>
    </div>
    <p class="notice">红包金额最低5元</p>
  </div>
  <div class="balance-info-box">
    <label>余额支付</label>
    <div class="balance-info"> 当前余额<span class="balance">3.43</span>元 <a href="https://i.csdn.net/#/wallet/balance/recharge" class="link-charge" target="_blank">前往充值 &gt;</a>
    </div>
  </div>
  <div class="opt-box">
    <div class="pay-info"> 需支付:<span class="price">10.00</span>元 </div>
    <button type="button" class="ml-auto btn-cancel">取消</button>
    <button type="button" class="ml8 btn-submit" disabled="true">确定</button>
  </div>
</form>

Text Content

 * 博客
 * 下载
 * 学习
 * 社区
 * 知道
 * GitCode
 * InsCode


搜索
登录
登录后您可以:
 * 免费复制代码
 * 关注/点赞/评论/收藏
 * 下载海量资源
 * 写文章/发动态/加入社区

立即登录
会员中心
消息
历史
创作中心

发布


JAVASCRIPT 编写简单的 HTML INPUT标签提交文件验证

最新推荐文章于 2022-07-25 09:44:54 发布
VIP文章 AkagiSenpai 于 2020-05-06 16:11:59 发布
阅读量748 收藏 3
点赞数 2
分类专栏: 前后端 文章标签: 字符串 javascript js 前端 html
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/weixin_44176696/article/details/105952189
版权

这里不会介绍如何传输文件如果您想了解文件是如何传输到服务器的
请进入传送门【Ajax实现简单图片文件异步上传并显示】

让用户提交文件永远是一件危险的事情,而提交之前的验证就显得必不可少了,而如果在文件提交到服务器端再验证,那么不仅具有一定的危险性,而且浪费了服务器宝贵的带宽来传输文件,使用JavaScript,在用户(的浏览器)提交文件之前,就验证文件的正确性,可以比较好的规避上述问题


HTML <INPUT TYPE="FILE"> 标签

这个标签可以获得用户提交的文件的各种属性,比如文件名,文件大小,这也是判断的核心

使用短短几句,可以创建一个文件提交页面

<input type="file" id="userfile">
<button id="btn">点我提交</button>


 * 1
 * 2




提交判断

1. 空提交判断

我们可以使用dom的方式,用document.getElementById()方法来获取input标签对象,而这个input对象具有一个 files
的属性,是用户上传的文件的数组

由于这次测试只提交一个文件,所以我们用.files[0]这个语句可以获取到单个文件对象(因为数组元素只有一个)并且判断对象是否为空,即用户是否选择了文件

 // 获取文件对象
var userfile = document.getElementById("userfile").files[0];
if(userfile == null) {
   
    alert("文件不能为空");
    return;
} 


 * 1
 * 2
 * 3
 * 4
 * 5
 * 6
 * 7

我们在 button 按钮的 onclick 函数里面加上上面的语句,即可判断是否是空提交了



最低0.47元/天 解锁文章
优惠劵

AkagiSenpai
关注 关注
 * 2
   点赞
 * 踩
 * 3
   收藏
   觉得还不错? 一键收藏
 * 0
   评论
 * 
 * JavaScript 编写简单的 html input标签提交文件验证
   这里不会介绍如何传输文件如果您想了解文件是如何传输到服务器的请进入传送门【Ajax实现简单图片文件异步上传并显示】让用户提交文件永远是一件危险的事情,而提交之前的验证就显得必不可少了,而如果在文件提交到服务器端再验证,那么不仅具有一定的危险性,而且浪费了服务器宝贵的带宽来传输文件,使用JavaScript,在用户(的浏览器)提交文件之前,就验证文件的正确性,可以比较好的规避上述问题html
   ...
   复制链接
   扫一扫
   
   热门
   
   VIP

专栏目录
JS 获取和设置input值,控制表单提交地址
xiao雷博客
11-20 4985
以 JS 注入的方式获取和设置input域的值: <!doctype html> <html lang="en"> <head> <meta
charset="UTF-8"> <title>Document</title> <script type="text/javascript" ...
js判断文件是否存在
yddongzs的专栏
08-01 1197
判断客户端文件时,可以用 var fso,s=filespec;   // filespec="C:/path/myfile.txt" fso=new
ActiveXObject("Scripting.FileSystemObject"); if(fso.FileExists(filespec)) s+="
exists."; else s+=" doesn't exist."; a
参与评论 您还未登录,请先 登录 后发表或查看评论
JS判断文件类型
Huathy的博客
03-25 4312
function fileType(ext){ //获取最后一个.的位置 var index= filePath.lastIndexOf(".");
//获取后缀 var ext = filePath.substr(index+1); //判断是否是视频类型
if(['mp4','avi','mov','rmvb','rm','flv','3gp'].indexOf(ext.toLo...
js 正则表达式 验证空字符、html标签、发票抬头
愿你走过半生,归来任是少年。
09-07 1796
实战应用—页面全局搜索官方实例源码:<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <script>
function displayResult() { var x; if(window.event) // IE8 及更早IE版本 {
x=event.keyCode; } else
JavaScript表单提交总结
weixin_44886806的博客
04-29 355
1.input标签提交 1.1>input[type=submit input的type属性是submit,会引发表单提交。
作为按钮的input控件同时被当做一个表单输入提交给了服务器。键值对是 btn=>‘提交‘; 1.2>input[type=button]
input的type属性还可以是button,这时它只是一个按钮,不会引发表单提交 2....
Html Input表单校验
夜黑博客
04-18 1万+
Html Input表单校验
Input可以绑定的附加属性有:datatype、nullmsg、sucmsg、errormsg、ignore、recheck、tip、altercss、ajaxurl
和 plugin等. 说明:                内置基本的datatype类型有: | 6-16 | n | n6-16 | s | s6-18 |
p |
【网页设计作业】html数字计算机器人验证测试
04-05
下面是关于 HTML 数字计算和机器人验证测试...编写 JavaScript 代码来验证用户的输入是否与计算出的结果匹配,并给出相应的提示。
以下是一个简单的例子,展示了如何使用 HTML、CSS 和 JavaScript 创建数字计算的表单:
拥有一个属于自己的javascript表单验证插件
11-26
自己编写了一个表单验证插件,使用起来很简单,以后还可以扩展更多的功能,比如ajax验证。
每个需要验证的表单元素下面有一个span标签,这个标签的class有一个valid表示需要验证,如果有nullable则表示可为空;rule...
HTML学习笔记(五)——表单
01-08
过去,需要编写 JavaScript 以增强表单行为——例如,要求访问者提交表单之前必须填写某个字段。HTML5
通过引入新的表单元素、输入类型和属性,以及内置的对必填字段、电子邮件地址、URL 以及定制模式的验证,让这...
mt-validator:ui绑定简单表单验证器
04-28
mt验证器ui绑定简单表单验证器。
mt-validator保证您编写简单,轻松扩展,快速的开发。依存关系jQuery兼容库安装有两种安装mt-validator的方法1.下载为npm模块。
(尚未实现。) npm install mt-validator2.从此处...
html上传文件判断为空,jquery判断 input type="file"上传文件是否为空
weixin_29214335的博客
06-04 653
要想获取type="file"的input内容,用varfile=$("id").val();肯定是不行的,下面是代码:html上传按钮为:提交js代码:function
submitXML(){var fileInput =
$('#reportXML').get(0).files[0];console.info(fileInput);if(fileInput){$("#reportXML...
js限制input输入
weixin_33674976的博客
02-08 371
1.取消按钮按下时的虚线框,在input里添加属性值 hideFocus 或者 HideFocus=true<input type="submit"
value="提交" hidefocus="true" /> 2.只读文本框内容,在input里添加属性值 readonly<input type="text"
readonly /> 3.防止退后清空的TEXT文档(可把...
HTML开发与应用:用Javascript实现提交功能(表单验证)
qq_42802111的博客
07-31 6079
HTML开发与应用:用Javascript实现提交功能(表单验证)。
之前我们已经实现过表单的input输入功能,但是并没有实现其中按钮的“提交”功能,而在HTML中想要实现这类功能就要使用到Javascript,而表单的验证也是JS中最为常见的功能,所以接下来我们来初步研究如何实现表单的验证功能。
在Javascript中实现函数的调用。 首先我们应该考虑到用户通过点击“提交”按钮来实现表...
JavaScript如何获得input元素value值
热门推荐
hello world!
01-11 4万+
转载地址:http://aquarius-zf.iteye.com/blog/605144
在页面中我们最常见的页面元素就是input了,但是我们如何用JavaScript得到网页input中输入的value值呢,其实很简单,方法也不止一种,据我总结比较常用的就是下面的两种方法,闲话不多说了,下面那就来看看我说的方法吧: 
方法一、  Java代码     
使用 HTML input 元素上传本地文件,在服务器端打印出上传的内容
SAP 资深技术专家 Jerry Wang 的技术分享
07-25 1827
在本地通过HTMLinput元素,支持上传多个文本文件到服务器。服务器采取Node.js实现,将本地上传的文本文件内容打印出来。
利用JS提交表单的几种方法和验证
lovedboy2012学习笔记记录站
09-06 1174
工作中发现表单提交方便的问题,很多时候IE下提交好好的,打了火狐下就出现了问题,利用提交按钮就不成功了,于是利用JS的方式就成功了,也不知道为什么。在导师的催促下就总结出以下的几种常用表单提交的方法。
第一种方式:表单提交,在form标签中增加onsubmit事件来判断表单提交是否成功        function validate(obj) {  
      if (c
用form表单input type="file"上传文件(提交前判断)
u010191806的专栏
03-28 2万+
1、用/jquery.form.js上传文件,提交前判断是否选择了文件 2、用ajax接收信息 3、优化提交按钮样式 HTML页面代码:            
Upload File            action="/Ajax.ashx?action=SendFiles" role="form"
method="post" ENCTYPE
js input输入框校验
前端技术的学习整理
06-11 2万+
只能输入英文 <input type="text" onkeyup="value=value.replace(/[^a-zA-Z]/g,'')"> 只能输入英文
<input type="text" onkeyup="value=value.replace(/[^\a-\z\A-\Z]/g,'')"
onkeydown="fncKeyStop(event)" onpas...
input file 检验格式名验证是否上传
zhanghaotian2011的专栏
08-15 4428
style="width:500px;"/> style="width:500px;"/> 视频名称: 标签(以逗号隔开): 视频简介:
选择一个视频文件(目前支持的文件格式有mp4): function check(){ var video = $("#video").val(); var
typename =
JavaScript表单即时验证 验证不成功不能提交
最新发布
05-24
要实现JavaScript表单即时验证,您需要编写一些JavaScript代码来验证用户输入,并将其与表单元素进行关联。
以下是一个基本的示例,演示如何在表单提交之前验证输入: ```html <form onsubmit="return validateForm()">
<label for="username">用户名:</label> <input type="text" id="username"
name="username" required> <br> <label for="password">密码:</label> <input
type="password" id="password" name="password" required> <br> <input
type="submit" value="提交"> </form> <script> function validateForm() { var
username = document.getElementById("username").value; var password =
document.getElementById("password").value; if (username == "" || password == "")
{ alert("请填写所有必填字段"); return false; } // 在此处可以添加更多的验证逻辑 return true; } </script>
```
在上面的示例中,我们使用了`onsubmit`事件来调用`validateForm()`函数。该函数获取用户名和密码输入的值,并检查它们是否为空。如果有任何一个输入为空,则会弹出一个警告框,并返回`false`以阻止表单提交。如果所有必填字段都有值,则返回`true`以允许表单提交。
您可以根据自己的需求扩展此示例,例如添加更多的验证逻辑或更多的表单字段。


“相关推荐”对你有帮助么?

 * 非常没帮助
 * 没帮助
 * 一般
 * 有帮助
 * 非常有帮助

提交
 * 关于我们
 * 招贤纳士
 * 商务合作
 * 寻求报道
 * 400-660-0108
 * kefu@csdn.net
 * 在线客服
 * 工作时间 8:30-22:00

 * 公安备案号11010502030143
 * 京ICP备19004658号
 * 京网文〔2020〕1039-165号
 * 经营性网站备案信息
 * 北京互联网违法和不良信息举报中心
 * 家长监护
 * 网络110报警服务
 * 中国互联网举报中心
 * Chrome商店下载
 * 账号管理规范
 * 版权与免责声明
 * 版权申诉
 * 出版物许可证
 * 营业执照
 * ©1999-2024北京创新乐知网络技术有限公司

AkagiSenpai CSDN认证博客专家 CSDN认证企业博客
码龄5年 暂无认证
437 原创 2万+ 周排名 92万+ 总排名 93万+ 访问 等级

1万+ 积分 1853 粉丝 2183 获赞 879 评论 6785 收藏

私信
关注


不懂 Linux 命令也能管好服务器。可视化管理、快速建站、100+ 精选开源软件任你选!广告


热门文章

 * Linux Shell 脚本简单地读取,写入文件 32501
 * 浅谈《原神》中的图形渲染技术 23652
 * 解决百度文库复制问题 非VIP也能复制文字 23129
 * LC-3指令集 指令/状态码介绍 21502
 * 最简单的网页登录注册功能讲解及其实现 19639


分类专栏

 * 
   图形学 7篇
 * 
   计算机系统 34篇
 * 
   杂记 19篇
 * 
   计网 1篇
 * 
   操作系统 9篇
 * 
   算法实验 7篇
 * 
   LeetCode 116篇
 * 
   数据库 10篇
 * 
   OpenGL学习 14篇
 * 
   Z小刀公众号转载 1篇
 * 
   数学 23篇
 * 
   算法 89篇
 * 
   前后端 27篇
 * 
   nodejs 7篇
 * 
   mc光影 10篇
 * 
   c++期末复习 4篇
 * 
   python 5篇
 * 
   爬虫 3篇
 * 
   Java 19篇
 * 
   C++与其STL 23篇
 * 
   数据结构 43篇
 * 
   蓝桥杯 74篇
 * 
   机器学习 4篇
 * 
   Linux 9篇




最新评论

 * 计组复习(一):乘法器,除法器与浮点加法器
   
   sunsir咩咩: 左移右移写反了,乘法辣里

 * 计组复习(三):流水化的数据通路,流水线冒险检测与处理
   
   Lucas983: 能不能单独买你这一篇文章啊😭

 * 计组复习(四):cache,虚拟内存,页表与TLB
   
   Lucas983: 11111

 * OpenGL学习(七)通过assimp库读取多种格式的模型
   
   追风筝的贝利: 你好,最后的着色器代码(顶点和片段)应该放在哪里啊

 * 深大计算机图形学大作业之虚拟场景建模
   
   2358-szu: 求一份源代码,谢谢大佬!!(1405800854@qq.com)


您愿意向朋友推荐“博客详情页”吗?

 * 强烈不推荐
 * 不推荐
 * 一般般
 * 推荐
 * 强烈推荐

提交


最新文章

 * 光线追踪渲染实战(五):低差异序列与重要性采样,加速收敛!
 * 光线追踪渲染实战(四):微平面理论与迪士尼 BRDF,严格遵循物理!
 * 光线追踪渲染实战(三):OpenGL 光线追踪,用 GPU 加速计算!


2021年30篇
2020年404篇
2019年4篇



目录

 1. html 标签
 2. 提交判断
 3. 验证页面完整代码


目录

 1. html 标签
 2. 提交判断
 3. 验证页面完整代码




分类专栏

 * 
   图形学 7篇
 * 
   计算机系统 34篇
 * 
   杂记 19篇
 * 
   计网 1篇
 * 
   操作系统 9篇
 * 
   算法实验 7篇
 * 
   LeetCode 116篇
 * 
   数据库 10篇
 * 
   OpenGL学习 14篇
 * 
   Z小刀公众号转载 1篇
 * 
   数学 23篇
 * 
   算法 89篇
 * 
   前后端 27篇
 * 
   nodejs 7篇
 * 
   mc光影 10篇
 * 
   c++期末复习 4篇
 * 
   python 5篇
 * 
   爬虫 3篇
 * 
   Java 19篇
 * 
   C++与其STL 23篇
 * 
   数据结构 43篇
 * 
   蓝桥杯 74篇
 * 
   机器学习 4篇
 * 
   Linux 9篇




评论

被折叠的  条评论 为什么被折叠? 到【灌水乐园】发言

查看更多评论
添加红包
祝福语


请填写红包祝福语或标题

红包数量
个

红包个数最小为10个

红包总金额
元

红包金额最低5元

余额支付
当前余额3.43元 前往充值 >
需支付:10.00元
取消 确定
成就一亿技术人!

领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包


实付元
使用余额支付
点击重新获取
扫码支付

钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值


word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word word word word word word word word word
word word word word word word word word

mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1
mmMwWLliI0fiflO&1



WELCOME TO CSDN.NET


CSDN.NET ASKS FOR YOUR CONSENT TO USE YOUR PERSONAL DATA TO:

 * perm_identity
   Personalised advertising and content, advertising and content measurement,
   audience research and services development
 * devices
   Store and/or access information on a device

expand_moreremove
Learn more
 * 
   How can I change my choice?
 * 
   What if I don't consent?
 * 
   How does legitimate interest work?
 * 
   Do I have to consent to everything?

Your personal data will be processed and information from your device (cookies,
unique identifiers, and other device data) may be stored by, accessed by and
shared with 135 TCF vendor(s) and 65 ad partner(s), or used specifically by this
site or app.

Some vendors may process your personal data on the basis of legitimate interest,
which you can object to by managing your options below. Look for a link at the
bottom of this page or in our privacy policy where you can withdraw consent.

Consent



Do not consent

Manage options

arrow_back

Data preferences


MANAGE YOUR DATA

You can choose how your personal data is used. Vendors want your permission to
do the following:

TCF vendors

help_outline


STORE AND/OR ACCESS INFORMATION ON A DEVICE

Cookies, device or similar online identifiers (e.g. login-based identifiers,
randomly assigned identifiers, network based identifiers) together with other
information (e.g. browser type and information, language, screen size, supported
technologies etc.) can be stored or read on your device to recognise it each
time it connects to an app or to a website, for one or several of the purposes
presented here.

View details
Consent (118 vendors)


USE LIMITED DATA TO SELECT ADVERTISING

Advertising presented to you on this service can be based on limited data, such
as the website or app you are using, your non-precise location, your device type
or which content you are (or have been) interacting with (for example, to limit
the number of times an ad is presented to you).

View details
Consent (71 vendors)Legitimate interest (31 vendors)help_outline


CREATE PROFILES FOR PERSONALISED ADVERTISING

Information about your activity on this service (such as forms you submit,
content you look at) can be stored and combined with other information about you
(for example, information from your previous activity on this service and other
websites or apps) or similar users. This is then used to build or improve a
profile about you (that might include possible interests and personal aspects).
Your profile can be used (also later) to present advertising that appears more
relevant based on your possible interests by this and other entities.

View details
Consent (96 vendors)


USE PROFILES TO SELECT PERSONALISED ADVERTISING

Advertising presented to you on this service can be based on your advertising
profiles, which can reflect your activity on this service or other websites or
apps (like the forms you submit, content you look at), possible interests and
personal aspects.

View details
Consent (92 vendors)


CREATE PROFILES TO PERSONALISE CONTENT

Information about your activity on this service (for instance, forms you submit,
non-advertising content you look at) can be stored and combined with other
information about you (such as your previous activity on this service or other
websites or apps) or similar users. This is then used to build or improve a
profile about you (which might for example include possible interests and
personal aspects). Your profile can be used (also later) to present content that
appears more relevant based on your possible interests, such as by adapting the
order in which content is shown to you, so that it is even easier for you to
find content that matches your interests.

View details
Consent (31 vendors)


USE PROFILES TO SELECT PERSONALISED CONTENT

Content presented to you on this service can be based on your content
personalisation profiles, which can reflect your activity on this or other
services (for instance, the forms you submit, content you look at), possible
interests and personal aspects. This can for example be used to adapt the order
in which content is shown to you, so that it is even easier for you to find
(non-advertising) content that matches your interests.

View details
Consent (26 vendors)


MEASURE ADVERTISING PERFORMANCE

Information regarding which advertising is presented to you and how you interact
with it can be used to determine how well an advert has worked for you or other
users and whether the goals of the advertising were reached. For instance,
whether you saw an ad, whether you clicked on it, whether it led you to buy a
product or visit a website, etc. This is very helpful to understand the
relevance of advertising campaigns.

View details
Consent (76 vendors)Legitimate interest (46 vendors)help_outline


MEASURE CONTENT PERFORMANCE

Information regarding which content is presented to you and how you interact
with it can be used to determine whether the (non-advertising) content e.g.
reached its intended audience and matched your interests. For instance, whether
you read an article, watch a video, listen to a podcast or look at a product
description, how long you spent on this service and the web pages you visit etc.
This is very helpful to understand the relevance of (non-advertising) content
that is shown to you.

View details
Consent (30 vendors)Legitimate interest (14 vendors)help_outline


UNDERSTAND AUDIENCES THROUGH STATISTICS OR COMBINATIONS OF DATA FROM DIFFERENT
SOURCES

Reports can be generated based on the combination of data sets (like user
profiles, statistics, market research, analytics data) regarding your
interactions and those of other users with advertising or (non-advertising)
content to identify common characteristics (for instance, to determine which
target audiences are more receptive to an ad campaign or to certain contents).

View details
Consent (56 vendors)Legitimate interest (21 vendors)help_outline


DEVELOP AND IMPROVE SERVICES

Information about your activity on this service, such as your interaction with
ads or content, can be very helpful to improve products and services and to
build new products and services based on user interactions, the type of
audience, etc. This specific purpose does not include the development or
improvement of user profiles and identifiers.

View details
Consent (63 vendors)Legitimate interest (39 vendors)help_outline


USE LIMITED DATA TO SELECT CONTENT

Content presented to you on this service can be based on limited data, such as
the website or app you are using, your non-precise location, your device type,
or which content you are (or have been) interacting with (for example, to limit
the number of times a video or an article is presented to you).

View details
Consent (10 vendors)Legitimate interest (2 vendors)help_outline


ENSURE SECURITY, PREVENT AND DETECT FRAUD, AND FIX ERRORS

help_outline

Your data can be used to monitor for and prevent unusual and possibly fraudulent
activity (for example, regarding advertising, ad clicks by bots), and ensure
systems and processes work properly and securely. It can also be used to correct
any problems you, the publisher or the advertiser may encounter in the delivery
of content and ads and in your interaction with them.

View details


DELIVER AND PRESENT ADVERTISING AND CONTENT

help_outline

Certain information (like an IP address or device capabilities) is used to
ensure the technical compatibility of the content or advertising, and to
facilitate the transmission of the content or ad to your device.

View details


MATCH AND COMBINE DATA FROM OTHER DATA SOURCES

help_outline

Information about your activity on this service may be matched and combined with
other information relating to you and originating from various sources (for
instance your activity on a separate online service, your use of a loyalty card
in-store, or your answers to a survey), in support of the purposes explained in
this notice.

View details


LINK DIFFERENT DEVICES

help_outline

In support of the purposes explained in this notice, your device might be
considered as likely linked to other devices that belong to you or your
household (for instance because you are logged in to the same service on both
your phone and your computer, or because you may use the same Internet
connection on both devices).

View details


IDENTIFY DEVICES BASED ON INFORMATION TRANSMITTED AUTOMATICALLY

help_outline

Your device might be distinguished from other devices based on information it
automatically sends when accessing the Internet (for instance, the IP address of
your Internet connection or the type of browser you are using) in support of the
purposes exposed in this notice.

View details


USE PRECISE GEOLOCATION DATA

With your acceptance, your precise location (within a radius of less than 500
metres) may be used in support of the purposes explained in this notice.

View details
Consent

Vendor preferences

Accept all



Confirm choices

arrow_back

Vendor preferences


CONFIRM OUR VENDORS

Vendors can use your data to provide services. Declining a vendor can stop them
from using the data you shared.

TCF vendors

help_outline


EXPONENTIAL INTERACTIVE, INC D/B/A VDX.TV

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ROQ.AD GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ADMAXIM LIMITED

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


INDEX EXCHANGE INC.

Cookie duration: 395 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


QUANTCAST

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BEESWAXIO CORPORATION

Cookie duration: 395 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


SOVRN, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices, Users’
profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


ADIKTEEV

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Authentication-derived identifiers, Device characteristics, Users’
profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RTB HOUSE S.A.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


THE UK TRADE DESK LTD

Cookie duration: 3629 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADMETRICS GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Consent


NEXXEN INC.

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EPSILON

Cookie duration: 184 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


YAHOO EMEA LIMITED

Cookie duration: 397 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ADVENTORI SAS

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


TRIPLELIFT, INC.

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


XANDR, INC.

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEORY GMBH

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


NEXXEN GROUP LLC

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


NEURAL.ONE

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


ADITION (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ACTIVE AGENT (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


TABOOLA EUROPE LIMITED

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


EQUATIV

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


ADFORM A/S

Cookie duration: 1 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


RATEGAIN ADARA INC

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more




View details | Storage details | Privacy policylaunch
Consent


SIFT MEDIA, INC

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics

more




View details | Privacy policylaunch
Consent


RAKUTEN MARKETING LLC

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LUMEN RESEARCH LIMITED

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


AMAZON AD SERVER

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OPENX

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


YIELDLAB (VIRTUAL MINDS GMBH)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ROKU ADVERTISING SERVICES

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SIMPLIFI HOLDINGS LLC

Cookie duration: 366 (days).

Data collected and processed: IP addresses, Device identifiers, Precise location
data

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


PUBMATIC, INC

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


COMSCORE B.V.

Cookie duration: 720 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Authentication-derived identifiers, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


FLASHTALKING

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more




View details | Privacy policylaunch
Consent


PULSEPOINT, INC.

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers, Device
characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


SMAATO, INC.

Cookie duration: 21 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SEMASIO GMBH

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CRIMTAN HOLDINGS LIMITED

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GENIUS SPORTS UK LIMITED

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


CRITEO SA

Cookie duration: 390 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles,
Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADLOOX SA

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics,
Probabilistic identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BLIS GLOBAL LIMITED

Cookie duration: 400 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


LOTAME SOLUTIONS, INC

Cookie duration: 274 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Authentication-derived identifiers, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


LIVERAMP

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


GROUPM UK LIMITED

Cookie duration: 395 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


LOOPME LIMITED

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


DYNATA LLC

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ASK LOCALA

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


NEAR INTELLIGENCE

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DOUBLEVERIFY INC.

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


BIDSWITCH GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


IPONWEB GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NEXTROLL, INC.

Cookie duration: 183 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


TEADS FRANCE SAS

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


STRÖER SSP GMBH (SSP)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


OS DATA SOLUTIONS GMBH &AMP; CO. KG

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PERMODO GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


PLATFORM161 B.V.

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


ADACADO TECHNOLOGIES INC. (DBA ADACADO)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


BASIS GLOBAL TECHNOLOGIES, INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SMADEX, S.L.U.

Cookie duration: 365 (days).

Data collected and processed: User-provided data, IP addresses, Non-precise
location data, Device identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


BOMBORA INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


EASYMEDIA GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


REMERGE GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADVANCED STORE GMBH

Cookie duration: 365 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


MAGNITE CTV, INC.

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DELTA PROJECTS AB

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


USEMAX ADVERTISEMENT (EMEGO GMBH)

Cookie duration: 365 (days).

Data collected and processed: Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


EMETRIQ GMBH

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


PUBLICIS MEDIA GMBH

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


M.D. PRIMIS TECHNOLOGIES LTD.

Cookie duration: 25 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ONETAG LIMITED

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


CLOUD TECHNOLOGIES S.A.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


SMARTOLOGY LIMITED

Doesn't use cookies.

Data collected and processed: IP addresses

more

Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


IMPROVE DIGITAL

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADOBE ADVERTISING CLOUD

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers,
Authentication-derived identifiers, Privacy choices

more




View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


BANNERFLOW AB

Cookie duration: 366 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
characteristics, Privacy choices

more




View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


TABMO SAS

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


INTEGRAL AD SCIENCE (INCORPORATING ADMANTX)

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


WIZALY

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Authentication-derived identifiers, Device
characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


WEBORAMA

Cookie duration: 393 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


JIVOX CORPORATION

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Privacy
choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


SAGE&#43;ARCHER BV

Doesn't use cookies.

Data collected and processed: Non-precise location data

more




View details | Privacy policylaunch
Consent


ON DEVICE RESEARCH LIMITED

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics

more




View details | Storage details | Privacy policylaunch
Consent


ROCKABOX MEDIA LTD

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device characteristics

more




View details | Storage details | Privacy policylaunch
Legitimate interesthelp_outline


EXACTAG GMBH

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Authentication-derived identifiers, Device characteristics,
Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


CELTRA INC.

Doesn't use cookies.

Data collected and processed: IP addresses, Device identifiers, Precise location
data, Device characteristics

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MAINADV SRL

Cookie duration: 30 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Device
characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


GEMIUS SA

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, Device identifiers,
Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


THE KANTAR GROUP LIMITED

Cookie duration: 914 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


NIELSEN MEDIA RESEARCH LTD.

Cookie duration: 120 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


SOLOCAL SA

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PIXALATE, INC.

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics

more




View details | Storage details | Privacy policylaunch
Consent


ORACLE ADVERTISING

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


NUMBERLY

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


AUDIENCEPROJECT APS

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


DEMANDBASE, INC.

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


EFFILIATION / EFFINITY

Cookie duration: 2 (days).

Data collected and processed: Device characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


SEENTHIS AB

Doesn't use cookies.

Data collected and processed: IP addresses, Device characteristics

more




View details | Privacy policylaunch


COMMANDERS ACT

Cookie duration: 365 (days).

Data collected and processed: IP addresses, Device identifiers

more




View details | Storage details | Privacy policylaunch
Consent


TRAVEL AUDIENCE GMBH

Cookie duration: 397 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Users’ profiles,
Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


HUMAN

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics, Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


ADLUDIO LTD.

Doesn't use cookies.

Data collected and processed: Device characteristics

more




View details | Privacy policylaunch
Consent


BLENDEE SRL

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


INNOVID LLC

Cookie duration: 90 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


PAPIRFLY AS

Doesn't use cookies.

Data collected and processed: Device characteristics

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


NEUSTAR, INC., A TRANSUNION COMPANY

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


VERVE GROUP EUROPE GMBH

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


OTTO (GMBH &AMP; CO KG)

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADOBE AUDIENCE MANAGER, ADOBE EXPERIENCE PLATFORM

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Precise location data, Device
characteristics, Privacy choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


LOCALSENSOR B.V.

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


ONLINE SOLUTION

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers, Precise location
data, Device characteristics, Privacy choices, Users’ profiles, Probabilistic
identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
Consent


RELAY42 NETHERLANDS B.V.

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Device identifiers, Device characteristics, Privacy choices,
Users’ profiles, Probabilistic identifiers

more




View details | Storage details | Privacy policylaunch
Consent


GP ONE GMBH

Cookie duration: Uses session cookies.

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device characteristics, Privacy choices

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


THE MEDIAGRID INC.

Cookie duration: 365 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Precise location data, Device
characteristics, Privacy choices, Probabilistic identifiers

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MINDTAKE RESEARCH GMBH

Cookie duration: 180 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Users’ profiles, Probabilistic
identifiers

more

Uses other forms of storage.


View details | Privacy policylaunch
Consent


CINT AB

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more




View details | Privacy policylaunch
Consent


GOOGLE ADVERTISING PRODUCTS

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


GFK GMBH

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, User-provided data,
IP addresses, Non-precise location data, Device identifiers,
Authentication-derived identifiers, Device characteristics, Privacy choices,
Users’ profiles

more

Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


REVJET

Cookie duration: 730 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Privacy choices, Users’ profiles

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


PROTECTED MEDIA LTD

Doesn't use cookies.

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Probabilistic identifiers

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


CLINCH LABS LTD

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Device characteristics, Privacy
choices, Users’ profiles, Probabilistic identifiers

more

Cookie duration resets each session.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ORACLE DATA CLOUD - MOAT

Doesn't use cookies.

Data collected and processed: IP addresses, Non-precise location data

more




View details | Privacy policylaunch
Legitimate interesthelp_outline


HEARTS AND SCIENCE MÜNCHEN GMBH

Cookie duration: 60 (days).

Data collected and processed: IP addresses

more

Cookie duration resets each session.


View details | Privacy policylaunch
Consent


AMAZON ADVERTISING

Cookie duration: 396 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices, Users’ profiles

more

Cookie duration resets each session. Uses other forms of storage.


View details | Storage details | Privacy policylaunch
Consent


MOLOCO, INC.

Cookie duration: 730 (days).

Data collected and processed: IP addresses, Non-precise location data, Device
identifiers, Device characteristics

more

Cookie duration resets each session. Uses other forms of storage.


View details | Privacy policylaunch
ConsentLegitimate interesthelp_outline


ADTRIBA GMBH

Cookie duration: 730 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


OBJECTIVE PARTNERS BV

Cookie duration: 90 (days).

Data collected and processed: Device identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent


ENSIGHTEN

Cookie duration: 1825 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Device identifiers, Device characteristics, Privacy choices

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Legitimate interesthelp_outline


EBAY INC

Cookie duration: 90 (days).

Data collected and processed: IP addresses, Device characteristics, Privacy
choices

more




View details | Storage details | Privacy policylaunch
Consent


HURRA COMMUNICATIONS GMBH

Cookie duration: 366 (days).

Data collected and processed: Browsing and interaction data, IP addresses,
Non-precise location data, Device identifiers, Authentication-derived
identifiers, Precise location data, Device characteristics, Probabilistic
identifiers

more

Cookie duration resets each session.


View details | Storage details | Privacy policylaunch
Consent

Ad partners

help_outline


GSKINNER

Privacy policylaunch
Consent


AKAMAI

Privacy policylaunch
Consent


FACEBOOK

Privacy policylaunch
Consent


AUNICA

Privacy policylaunch
Consent


BOOKING.COM

Privacy policylaunch
Consent


C3 METRICS

Privacy policylaunch
Consent


IBM

Privacy policylaunch
Consent


EVIDON

Privacy policylaunch
Consent


CUBED

Privacy policylaunch
Consent


OPTOMATON

Privacy policylaunch
Consent


INTELLIAD

Privacy policylaunch
Consent


ANALIGHTS

Privacy policylaunch
Consent


DSTILLERY

Privacy policylaunch
Consent


MEDIAMATH

Privacy policylaunch
Consent


ZMS

Privacy policylaunch
Consent


DENTSU AEGIS NETWORK

Privacy policylaunch
Consent


IGNITION ONE

Privacy policylaunch
Consent


OMNICOM MEDIA GROUP

Privacy policylaunch
Consent


DIGISEG

Privacy policylaunch
Consent


RESONATE

Privacy policylaunch
Consent


SOJERN

Privacy policylaunch
Consent


HAENSEL AMS

Privacy policylaunch
Consent


BDSK HANDELS GMBH & CO. KG

Privacy policylaunch
Consent


TRADEDOUBLER AB

Privacy policylaunch
Consent


TRUSTARC

Privacy policylaunch
Consent


TRUEFFECT

Privacy policylaunch
Consent


MARKETING SCIENCE CONSULTING GROUP, INC.

Privacy policylaunch
Consent


DENTSU

Privacy policylaunch
Consent


ESSENS

Privacy policylaunch
Consent


TRAVEL DATA COLLECTIVE

Privacy policylaunch
Consent


ADVOLUTION.CONTROL

Privacy policylaunch
Consent


WIDESPACE

Privacy policylaunch
Consent


LIFESTREET

Privacy policylaunch
Consent


VIMEO

Privacy policylaunch
Consent


BATCH MEDIA

Privacy policylaunch
Consent


VODAFONE GMBH

Privacy policylaunch
Consent


MAGNITE

Privacy policylaunch
Consent


SCENESTEALER

Privacy policylaunch
Consent


NETQUEST

Privacy policylaunch
Consent


MANAGE.COM

Privacy policylaunch
Consent


CLOUDFLARE

Privacy policylaunch
Consent


SALESFORCE DMP

Privacy policylaunch
Consent


HAVAS MEDIA FRANCE - DBI

Privacy policylaunch
Consent


NETFLIX

Privacy policylaunch
Consent


MACROMILL GROUP

Privacy policylaunch
Consent


EBUILDERS

Privacy policylaunch
Consent


APPLOVIN CORP.

Privacy policylaunch
Consent


NANO INTERACTIVE

Privacy policylaunch
Consent


FRACTIONAL MEDIA

Privacy policylaunch
Consent


RACKSPACE

Privacy policylaunch
Consent


LIFTOFF

Privacy policylaunch
Consent


MSI-ACI

Privacy policylaunch
Consent


ARRIVALIST

Privacy policylaunch
Consent


NAVEGG

Privacy policylaunch
Consent


ADMEDO

Privacy policylaunch
Consent


KOCHAVA

Privacy policylaunch
Consent


MOBITRANS

Privacy policylaunch
Consent


ADEX

Privacy policylaunch
Consent


IMPACT

Privacy policylaunch
Consent


SPOTAD

Privacy policylaunch
Consent


AARKI

Privacy policylaunch
Consent


SFR

Privacy policylaunch
Consent


CABLATO

Privacy policylaunch
Consent


WAYSTACK

Privacy policylaunch
Consent


TRESENSA

Privacy policylaunch
Consent

Accept all



Confirm choices

Close



确定取消




举报

选择你想要举报的内容(必选)
 * 内容涉黄
 * 政治相关
 * 内容抄袭
 * 涉嫌广告
 * 内容侵权
 * 侮辱谩骂
 * 样式问题
 * 其他

原文链接(必填)


请选择具体原因(必选)
 * 包含不实信息
 * 涉及个人隐私

请选择具体原因(必选)
 * 侮辱谩骂
 * 诽谤

请选择具体原因(必选)
 * 搬家样式
 * 博文样式


补充说明(选填)


取消

确定

创作话题

IT行业哪些证书含金量高? 去创作
开源软件的影响力 去创作


新手
引导 客服 举报 返回
顶部

登录后您可以享受以下权益:

 * 免费复制代码
 * 和博主大V互动
 * 下载海量资源
 * 发动态/写文章/加入社区

×立即登录