/**
* ページを読み取り専用として設定します
*/
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 '';
}); >});
}