Quảng cáo Google

Hỗ trợ trực tuyến

Kinh doanh :
Kinh doanh
(04) 36 29 12 82 - Ext 802
Kỹ thuật :
Kỹ thuật
(04) 36 29 12 82 - Ext 801
Hotline :
Hotline
(04) 39 95 95 36

Trang chủ » Thủ thuật - SEO » Chia sẻ kinh nghiệm

Một số đoạn Script hay dùng trong Web

Bookmark and Share

Ngày nay, mỗi doanh nghiệp hay cá nhân đều có website riêng,  thi thoảng website cũng cần thay đổi đôi chút để người dùng cảm nhận đc sự tươi mới, chuyên nghiệp và bảo mật an toàn hơn, vì thế đòi hỏi người quản lý web phải nắm được 1 số kỹ thuật và tìm tòi hơn trong việc làm web.

BLUESKY xin chia sẻ với quý khách hàng 1 số đoạn script hay dùng trong website, đôi khi có thể quý khách hàng cần sử dụng đến :

Cấm không cho bấm chuột Phải

Trích:
<script LANGUAGE="JavaScript">
<!--
function click() {
if (event.button==2) {
alert(''DO NOT STEAL!'');
}
}
document.onmousedown=click
// -->
</script>


Bật cửa Sổ Pop Up

Trích:
<script LANGUAGE="JavaScript">
<!--
window.open(''http://bluesky.vn'');
// -->
</script>


Bật cửa Sổ Pop Under

Trích:
<script LANGUAGE="JavaScript">
<!--
if(navigator.appName.indexOf("WebTV")==-1) {
myWin = open('''', ''winin'',''toolbar=0,menubar=0, scrollbars=1,status=0,resizable=1,width=80,height= 430'');
myWin.blur();
myWin.location = ''http://www.bluesky.vn'';
var shut=true;
}
// -->
</script>


Bookmark tự động


Trích:

<a href="javascript:window.external.AddFavorite(''htt p://www.bluesky.vn'', ''My Site Title'');">Bookmark this Site!</a>


Backforward eload

Trích:

<a href="javascript:history.back(1)">Go Back</a>
Forward: <a href="javascript:history.forward(1)">Go Forward</a>
Refresh: <a href="javascript:location.reload(1)">Refresh</a>


In Trang
Trích:
<a href="javascript:window.print()">Print This Page</a>


Chọn nhóm menu
Trích:
<script LANGUAGE="JavaScript">
<!--
function jumpBox(list) {location.href = list.options[list.selectedIndex].value}
// -->
</script>

<form>
<select>
<option selected>-------------------
<option value="firstpage.html">One
<option value="secondpage.html">Two
</select>
<input type="button" value="Go" onClick="jumpBox(this.form.elements[0])">
</form>

Hiệu ứng chuột làm đối ảnh
Trích:
<script LANGUAGE="JavaScript">
<!--
MouseOver("firstimage.gif","secondimage.gif","widt h=100 height=30 border=0 alt=''Click Here''","yourpage.html");
// -->
</script>

 

Đây là đoạn script về lịch nó sẽ giúp trang web của bạn đẹp hơn

    <SCRIPT LANGUAGE="JavaScript">

    <!--Total Java Scripts 99 - Next Step Software-->

    <!-- Begin
    monthnames = new Array(
    "January",
    "Februrary",
    "March",
    "April",
    "May",
    "June",
    "July",
    "August",
    "September",
    "October",
    "November",
    "Decemeber");
    var linkcount=0;
    function addlink(month, day, href) {
    var entry = new Array(3);
    entry[0] = month;
    entry[1] = day;
    entry[2] = href;
    this[linkcount++] = entry;
    }
    Array.prototype.addlink = addlink;
    linkdays = new Array();
    monthdays = new Array(12);
    monthdays[0]=31;
    monthdays[1]=28;
    monthdays[2]=31;
    monthdays[3]=30;
    monthdays[4]=31;
    monthdays[5]=30;
    monthdays[6]=31;
    monthdays[7]=31;
    monthdays[8]=30;
    monthdays[9]=31;
    monthdays[10]=30;
    monthdays[11]=31;
    todayDate=new Date();
    thisday=todayDate.getDay();
    thismonth=todayDate.getMonth();
    thisdate=todayDate.getDate();
    thisyear=todayDate.getYear();
    thisyear = thisyear % 100;
    thisyear = ((thisyear < 50) ? (2000 + thisyear) : (1900 + thisyear));
    if (((thisyear % 4 == 0)
    && !(thisyear % 100 == 0))
    ||(thisyear % 400 == 0)) monthdays[1]++;
    startspaces=thisdate;
    while (startspaces > 7) startspaces-=7;
    startspaces = thisday - startspaces + 1;
    if (startspaces < 0) startspaces+=7;
    document.write("<table border=2 bgcolor=white ");
    document.write("bordercolor=black><font color=black>");
    document.write("<tr><td colspan=7><center><strong>"
    + monthnames[thismonth] + " " + thisyear
    + "</strong></center></font></td></tr>");
    document.write("<tr>");
    document.write("<td align=center>Su</td>");
    document.write("<td align=center>M</td>");
    document.write("<td align=center>Tu</td>");
    document.write("<td align=center>W</td>");
    document.write("<td align=center>Th</td>");
    document.write("<td align=center>F</td>");
    document.write("<td align=center>Sa</td>");
    document.write("</tr>");
    document.write("<tr>");
    for (s=0;s<startspaces;s++) {
    document.write("<td> </td>");
    }
    count=1;
    while (count <= monthdays[thismonth]) {
    for (b = startspaces;b<7;b++) {
    linktrue=false;
    document.write("<td>");
    for (c=0;c<linkdays.length;c++) {
    if (linkdays[c] != null) {
    if ((linkdays[c][0]==thismonth + 1) && (linkdays[c][1]==count)) {
    document.write("<a href="" + linkdays[c][2] + "">");
    linktrue=true;
          }
       }
    }
    if (count==thisdate) {
    document.write("<font color='FF0000'><strong>");
    }
    if (count <= monthdays[thismonth]) {
    document.write(count);
    }
    else {
    document.write(" ");
    }
    if (count==thisdate) {
    document.write("</strong></font>");
    }
    if (linktrue)
    document.write("</a>");
    document.write("</td>");
    count++;
    }
    document.write("</tr>");
    document.write("<tr>");
    startspaces=0;
    }
    document.write("</table></p>");
    // End -->
    </SCRIPT>


- Chữ Chạy Dưới Thanh Status Bar

    <body>
    <script>
    function scrollPlus(seed)
    {

    var msg = "[ Lam Gia Minh chúc bạn vui vẻ ]";
    var out= " ";
    var c = 1;

    if (seed > 100){
    seed--;
    var cmd="scrollPlus(" + seed + ")";
    timerTwo=window.setTimeout(cmd,100);

    }else if (seed <= 100 && seed > 0){
    for (c=0; c < seed; c++){
    out+=" ";
    }
    out+=msg;
    seed--;
    var cmd="scrollPlus(" + seed + ")";
    window.status=out;
    timerTwo=window.setTimeout(cmd,100);

    }else if (seed <= 0){
    if (-seed < msg.length){

    out+=msg.substring(-seed,msg.length);
    seed--;
    var cmd="scrollPlus(" + seed + ")";
    window.status=out;
    timerTwo=window.setTimeout(cmd,100);

    }else{
    window.status=" ";
    timerTwo=window.setTimeout("scrollPlus(100)",75);
    }
    }
    }

    function clickMouse()
    {
    if ((event.button==2) || (event.button==3)){
    return false;
    }
    }

    function clickKey()
    {
    if((event.shiftKey) && (event.keyCode == 121)){

    return false;
    }
    }

    function noAction(){
    return false;
    }

    function searchVOD(){

    if(document.schvod.key.value == ""){
    alert("Please, input information to search!");
    }else{
    document.schvod.submit();
    }

    }

    function doForgotPassword()
    {
    window.open('ForgotPassword.asp','ForgotPassword', 'width=400,height=150,toolbar=no, statusbar=no,resizeable=no, scrollbars=no');

    }

    function checkID()
    {
    if(document.login.txtAccount.value=="")
    {
    alert("Username can not be blank!");
    document.login.txtAccount.focus();
    // return false;
    }else if(document.login.txtPassword.value=="")
    {
    alert("Password can not be blank!");
    document.login.txtPassword.focus();
    // return false;
    }else if(document.login.AreaCode.value=="")
    {
    alert("Please, select your area!");
    document.login.AreaCode.focus();
    // return false;

    }
    else
    {
    document.login.submit();
    }
    }

    document.onmousedown=clickMouse
    document.onkeydown=clickKey
    document.oncontextmenu=noAction
    document.ondragstart=noAction
    document.onselectstart=noAction
    document.onLoad=scrollPlus(10)
    </script>
    </body>

Tags : 
» Các thông tin mới đăng :
» Các thông tin cũ hơn :
Hệ thống quản lý Hosting
Hệ thống quản lý Domain
Giá : 5.000.000 VNĐ
Mẫu website giới thiệu du thuyền, du thuyền Hạ Long
Giá : 4.000.000 VNĐ
Mẫu website công ty mỹ phẩm chính hãng
Giá : 2.000.000 VNĐ
Mẫu website cửa hàng quà tặng, shop đồ lưu niệm
Công ty cổ phần thương mại và dịch vụ Trời Xanh
Giấy phép kinh doanh / MST : 0102505810
Địa chỉ : Số 128 ngõ Xã Đàn 2, Nam Đồng, Đống Đa, Hà Nội
Dịch vụ trực tuyến chuyên nghiệp - Thiết kế website - Quảng cáo trực tuyến
Văn phòng làm việc : Nhà B5 Tập thể Hải Quan, ngõ 194 Giải Phóng, TX, HN
Điện thoại : (04) 39 95 95 36 - (04) 36 29 12 82 / Fax : (04) 39 95 43 77
Website : www.bluesky.vn - E-mail : info@bluesky.vn
Số lượt truy cập : 189.613
Đang online : 5
Facebook BLUESKY BLOGGER BLUESKY Twitter BLUESKY

Thiet ke website

By Published: Thiết kế website Hà Nội, thiết kế website doanh nghiệp 4.5 stars based on 318người dùng đánh giá Ingredients: Thinly-sliced apples: 6 cups White sugar: 3/4 cup
Website xem tốt nhất trên trình duyệt Firefox 3.x, Opera 9x, IE 7 trở lên và Safari hoặc Chrome với độ phân giải 1024x768px.