xxxxxxxxxx
<html>
<head>
<meta charset="utf-8">
<title>高手教程(study.p2hp.com)</title>
<script src="https://cdn.staticfile.net/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<script>
$(function () {
function fun( html ){
document.body.innerHTML += "<br>" + html;
}
fun($.isEmptyObject({})); // true
fun($.isEmptyObject({ foo: "bar" })); // false
})
</script>
</body>
</html>