当我在每次功能再次运行时单击按钮时。为什么?
我必须点击两次,但我不会只点击一次。
在 google chrome 中尝试此代码。
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
<div id="one" >   Srboljub Petrovic</div>
<input type="button" id="f" value="Klikni" onclick="f1();"></input>
<script>
function f1()
{
$("#f").click(function()
{
$("#one").slideUp();
$("#one").css("border", "5px solid gray");
$("#one").css("background-color", "red");
$("#one").css("color","white");
$("#one").slideDown();
});
}
</script>
</body>
</html>