87,991
社区成员
发帖
与我相关
我的任务
分享
$(document).ready(function(){
$('verify').mouseover(function() {
$(this).css('color','blue');
$(this).css('font-weight','bold');
});
$('verify').mouseout(function(){
$(this).css('backgournd-color','green');
});
})
<input name="Submit" type="submit" id="verify" value="提交修改"><br>
$(document).ready(function () {
$('#verify').mouseover(function () {
$(this).css('color', 'blue');
$(this).css('font-weight', 'bold');
});
$('#verify').mouseout(function () {
alert('');
$(this).css('color', 'green');
});
})
