onpaste函数在jsp中不起作用

时间:2014-10-30 01:10:08

标签: jsp

我使用html:text标签创建了一个jsp,如下所示

 <html:text name="Form"  property="name" styleId="id"   style="width:150px" onpaste="false" />

以上的onpaste功能不起作用。

这里有什么错误?

1 个答案:

答案 0 :(得分:0)

struts HTML标记onpaste没有<html:text />属性,也许你可以添加javascript函数。

<html:text name="form" property="name" id="name" onFocus="disablePaste()"/>

------ JAVASCRIPT ------
function disablePaste(){
var input = document.getElementById("name");
if (input)
   input.onpaste = function(){return false;};
}