我是JQuery的新手,尽管多次阅读指南,但我找不到问题。
单击按钮时,以下功能不会被触发:
function enable(){
alert("Enable Working!");
}
function disable(){
alert("Disable Working!");
}
$("#enable").click(function(){
$("#enable").hide();
});
$("#disable").click(function(){
disable();
});
和html页面。我也没有看到任何错误
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>popup</title>
<style>
#enable{
color:green;
position:relative;
top:20px;
}
#disable{
color:red;
position:relative;
top:25px;
}
body{
height: 100px;
}
</style>
</head>
<body id="popup">
<input id="enable" type="button" value="Enable">
<br />
<input id="disable" type="button" value="Disable">
<script src="popup.js"></script>
<script src="jquery.js"></script>
</body>
<html>
我想要的是在单击启用按钮时运行enable
功能。我想点击禁用按钮时运行disable
功能。警报可以测试它是否正常工作。
答案 0 :(得分:2)
首先加载jQuery文件,更改文件的顺序:
<script src="jquery.js"></script>
<script src="popup.js"></script>
答案 1 :(得分:1)
也许是这样的:
function enable(){
alert("Enable Working!");
}
function disable(){
alert("Disable Working!");
}
$("#enable").click(enable);
$("#disable").click(disable);
正如其他人提到的那样,反转脚本包含:
<script src="jquery.js"></script>
<script src="popup.js"></script>
答案 2 :(得分:1)
您的代码看起来不错,只需更改#enable单击中的代码即可运行该功能:
<强> Demo 强>
$("#enable").click(function(){
enable();
});
$("#disable").click(function(){
disable();
});
如果要隐藏按钮,请将其推入功能:
function enable(){
alert("Enable Working!");
$("#enable").hide();
}
添加此内容以在页面加载时加载代码:
$(document).ready(function(){
//your code
});
可以从在线源加载jQuery脚本文件。如果您希望代码为<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
。在其他.js文件之前加载它。如果需要jQuery。
答案 3 :(得分:0)
将其更改为:
function enable(){
alert("Enable Working!");
}
function disable(){
alert("Disable Working!");
}
$(document).ready(function() {
$("#enable").click(function(){
enable();
});
$("#disable").click(function(){
disable();
});
});
答案 4 :(得分:0)
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<title>popup</title>
<style>
#enable{
color:green;
position:relative;
top:20px;
}
#disable{
color:red;
position:relative;
top:25px;
}
body{
height: 100px;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js">
</script>
<script>
$(document).ready(function(){
});
function enable(){
alert("Enable Working!");
}
function disable(){
alert("Disable Working!");
}
$("#enable").click(function(){
enable();
});
$("#disable").click(function(){
disable();
});
});
</script>
</head>
<body>
<input id="enable" type="button" value="Enable">
<br />
<input id="disable" type="button" value="Disable">
</body>
</html>