我使用html:text标签创建了一个jsp,如下所示
<html:text name="Form" property="name" styleId="id" style="width:150px" onpaste="false" />
以上的onpaste功能不起作用。
这里有什么错误?
答案 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;};
}