jquery常用事件,老师我来提高的,帮我审核下,谢谢

原创 2018-12-16 13:48:09 143
摘要:<!DOCTYPE html><html><head> <title></title> <script type="text/javascript" src="jquery-3.3.1.min.js"></script> <style type="text/c

<!DOCTYPE html>

<html>

<head>

<title></title>

<script type="text/javascript" src="jquery-3.3.1.min.js"></script>

<style type="text/css">

.box{color: red;}

.main{font-size: 40px;font-weight: bold;}

</style>

</head>

<body>

<p title="ok">php中文网</p>

<input type="text" id="mm">

<script type="text/javascript">

$(document).ready(function () {

// $('#mm').blur(function(){

// alert('123')

// })

// $('#mm').focus(function(){

// alert('456')

// })

$('#mm').change(function(){

$('#mm').css('background','pink')

})

})

</script>

</body>

</html>

老师我来提高的,帮我审核下,谢谢

发布手记

热门词条