欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

html组件不可输入(只读)同时任何组件都有效

程序员文章站 2022-04-14 10:30:23
代码如下: /** * 将页面设置为只读 */ var setreadonly = function() { var input = $("input"); input.each...

代码如下:

/**
* 将页面设置为只读
*/
var setreadonly = function()
{
var input = $("input");
input.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this).wrap(function()
{
return '<span onmousemove="this.setcapture();" onmouut="this.releasecapture();" />';
});
});
var select = $("select");
select.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this).wrap(function()
{
return '<span onmousemove="this.setcapture();" onmouseout="this.releasecapture();" />';
});
});
var textarea = $("textarea");
textarea.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this).wrap(function()
{
return '<span onmousemove="this.setcapture();" onmouseout="this.releasecapture();" />';
});
});
var img = $("img");
img.each(function(i)
{
$(this).attr("onfocus", "this.blur();return false;");
$(this).wrap(function()
{
return '<span onmousemove="this.setcapture();" onmouseout="this.releasecapture();" />';
});
});
}