在下面的代码中,jquery show 和 jQuery hide 功能不起作用.. 虽然这是基本的东西,但在过去的 1 小时内我无法通过这个.. 我无法隐藏和显示 div ......请帮助
<!DOCTYPE html>
<html>
<head>
<title>sample</title>
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
var fieldExample = $('#myTags');
fieldExample.focus(function() {
var div = $('div#showDiv').show();
$(document).bind('focusin#showDiv click#showDiv',function(e) {
if ($(e.target).closest('#showDiv, #myTags').length) return;
$(document).unbind('#showDiv');
div.fadeOut('medium');
});
});
$('div#showDiv').hide();
})
</script>
</head>
<body>
<input id="myTags"/>
<div id="showDiv" style="height:200px;width:200px;background-color:red;"></div>
</body>
</html>