- Back to Home »
- Thủ Thuật Blog »
- Code javascript quảng cáo popup- 1 lần/ngày/1 ip
Posted by : admin
27 tháng 4, 2013
Popup 1 lần / 1 ngày / 1 ip nhưng mở ra new windows mới có vẻ vẫn chưa được thích hợp lắm, nó vẫn gây ảnh hưởng nhiều đến lượt ghé thăm Website của họ. Ở bài viết Code popup 1 lần/ ngày / ip mình đã giới thiệu tới các bạn loại Code mở ra new windows. Ở bài viết giới thiệu này mình hướng dẫn các bạn sử dụng code javascript để popup new tab. Popup nói dễ hiểu là khi nhấp vào link hay bất kỳ vị trí nào trên Website, blog, forum thì nó chạy thêm 1 link khác (Link mình đặt Popup)
Lấy File https://quyet223.googlecode.com/files/popup-new-tab1.js để đặt link Popup của các bạn muốn đặt.
Hoặc mở 1 file Javascript mới copy đoạn Code dưới đây và lưu lại thành file .JS của các bạn
Lưu ý: Code này popup 1 lần trên 1 ngày theo 1 địa chỉ IP
Dán đoạn code dưới đây thay thế cho <body>
Để làm được điều này các bạn chỉ cần thực hiện bước đơn giản sau:
<script src='https://quyet223.googlecode.com/files/popup-new-tab1.js' type='text/javascript'/>
<body onclick='popunder();'>
Lấy File https://quyet223.googlecode.com/files/popup-new-tab1.js để đặt link Popup của các bạn muốn đặt.
Hoặc mở 1 file Javascript mới copy đoạn Code dưới đây và lưu lại thành file .JS của các bạn
function Set_Cookie(name, value, expires, path, domain, secure) {
var today = new Date();
today.setTime(today.getTime());
var expires_date = new Date(today.getTime() + (expires));
document.cookie = name + "=" + escape(value) +
((expires) ? ";expires=" + expires_date.toGMTString() : "") +
((path) ? ";path=" + path : "") +
((domain) ? ";domain=" + domain : "") +
((secure) ? ";secure" : "");
}
function Get_Cookie(name) {
var start = document.cookie.indexOf(name + "=");
var len = start + name.length + 1;
if ((!start) &&
(name != document.cookie.substring(0, name.length))) {
return null;
}
if (start == -1) return null;
var end = document.cookie.indexOf(";", len);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(len, end));
}
function Delete_Cookie(name, path, domain) {
if (Get_Cookie(name)) document.cookie = name + "=" +
((path) ? ";path=" + path : "") +
((domain) ? ";domain=" + domain : "") +
";expires=Mon, 11-November-1989 00:00:01 GMT";
}
function popunder() {
if (Get_Cookie('cucre') == null) {
Set_Cookie('cucre', 'cucre Popunder', '1', '/', '', '');
var url = "http://longchimvac.blogspot.com/";
pop = window.open(url, 'windowcucre');
pop.blur();
window.focus();
}
}
function addEvent(obj, eventName, func) {
if (obj.attachEvent) {
obj.attachEvent("on" + eventName, func);
}
else if (obj.addEventListener) {
obj.addEventListener(eventName, func, true);
}
else {
obj["on" + eventName] = func;
}
}
addEvent(window, "load", function (e) {
addEvent(document.body, "click", function (e) {
popunder();
});
});
nonstop
Trả lờiXóa