本文介绍了我用的是vs 2010版。有没有办法摆脱这个错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这是我的代码:
<%div id =divEditPnlonkeyup =enableSaveButton(); onclick =enableSaveButton();onactivate =enableSaveButton();style =WIDTH:804px;runat =server>
我尝试过:
虽然我运行这个..我得到如下所述的错误:
验证(XHTML 1.0 Transitional):属性'onactivate'不是元素'div'的有效属性。
如何解决这个问题?
提前谢谢!
This is my code:
"<% div id="divEditPnl" onkeyup="enableSaveButton();" onclick="enableSaveButton();" onactivate="enableSaveButton();" style="WIDTH:804px;" runat="server">
What I have tried:
While i run this.. i get error as mentioned below:
Validation (XHTML 1.0 Transitional): Attribute 'onactivate' is not a valid attribute of element 'div'.
How can i resolve this?
thanks in advance!
推荐答案
id, class, lang, dir, title, style, align
和
And
onclick, ondblclick, onmousedown, onmouseup, onmouseover, onmousemove, onmouseout, onkeypress, onkeydown, onkeyup
请参阅HTML5规范: []
这篇关于我用的是vs 2010版。有没有办法摆脱这个错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!