/**
* 將頁面設定為唯讀
*/
var setReadOnly = function ()
{
var input = $("input");
input.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). wrap(function()
{
return '';
}) >});
var select = $("select");
select.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). wrap(function()
{
return '';
}) >});
var textarea = $("textarea");
textarea.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). wrap(function()
{
return '';
}) >});
var img = $("img");
img.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this). wrap(function()
{
return '';
}) >});
}