Thứ Hai, 25 tháng 2, 2013

Chèn khung chứa code có thẻ "Select all"


<body>
<form name="MyForm">

              <textarea cols="59" name="MyText" rows="18" wrap="on" style="background:#eee; color:#464646; border:1px #A0C4EA dashed;">
              </textarea>

             <input name="button" onclick="javascript:this.form.MyText.focus();this.form.MyText.select();" type="button" value="Select all"/>
</form>
</body>

hình minh họa

Chèn trang HTML vào bài viết

<iframe src="http://ld.me.zing.vn" height="500" width="800" scrolling=yes frameborder="0"></iframe>

Bo tròn 4 góc viền với border-radius


<style type="text/css">

#idbtn{
border-radius:4px;
width:90px;
border:1px #8AAFE1 solid;
}
#idd{

border-radius:4px;
width:300px;
border:1px #8AAFE1 solid;
}
</style>

<table>

    <tr>
        <td>Nhập tên</td>
        <td><input  type="text"  id="idd"/></td>
    </tr>
    <tr>
        <td>Nhập email</td>
        <td><input  type="text"  id="idd"/></td>
    </tr>
    <tr>
        <td>Nhập địa chỉ</td>
        <td><textarea id="idd" rows="5"></textarea></td>
    </tr>
    <tr>
    <td></td>
    <td><input  id="idbtn" type="button" value=" Submit "/>
    </td>
    </tr>
</table>




Không cho nhập kí tự (chữ) vào ô textbox sử dụng javasrcipt


<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script>
function keyPhone(e)
{
var keyword=null;
    if(window.event)
    {
    keyword=window.event.keyCode;
    }else
    {
        keyword=e.which; //NON IE;
    }
   
    if(keyword<48 || keyword>57)
    {
        if(keyword==48 || keyword==127)
        {
            return ;
        }
        return false;
    }
}

</script>
</head>

<body>
Nhap so dien thoai :
<input name="phone" type="text" onkeypress="return keyPhone(event);"/>
</body>
</html>

Tích hợp GOOLE DOCUMENT VIEW VÀO WEBSITE




<body>
<div>
<iframe id="" src="http://docs.google.com/gview?url=http://infolab.stanford.edu/pub/papers/google.pdf&embedded=true" style="width:700px;height:600px"></iframe>
</div>
</body>

       
Copy bỏ vào file html và chạy thử