我可能一直盯着这个太长时间并且遗漏了一些显而易见的东西,但是:为什么这在JSFiddle中运行良好而不是在我上传它时?
最后的警报显示在测试网站上,但无论如何,“showthis”也可见。
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Test Form Field</title>
<script type="text/javascript" src="scripts/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="scripts/showfield.js"></script>
</head>
<body>
<input type="checkbox" name="checkbox" id="checkbox" value="checkbox" />
<br />
<input id="showthis" name="showthis" size="50" type="text" value="text here"/>
</body>
</html>
jQuery(我已经下载了一个缩小的jQuery 1.11.0,这是在JSFiddle中运行的)
//hide field by default
$('input[name="showthis"]').hide();
//show it when the checkbox is clicked
$('input[name="checkbox"]').on('click', function(){
if ( $(this).prop('checked') ) {
$('input[name="showthis"]').fadeIn();
}
else {
$('input[name="showthis"]').hide();
}
});
// the alert is showing fine
alert ("hello");
JSFiddle http://jsfiddle.net/DLQY9/
答案 0 :(得分:3)
将代码包装在加载事件中。这是较新的首选语法(而不是$(window)
或$(document)
):
$(function () {
$('input[name="showthis"]').hide();
//show it when the checkbox is clicked
$('input[name="checkbox"]').on('click', function () {
if ($(this).prop('checked')) {
$('input[name="showthis"]').fadeIn();
} else {
$('input[name="showthis"]').hide();
}
});
});
答案 1 :(得分:1)
试试这个
$(window).load(function(){
$('input[name="showthis"]').hide();
//show it when the checkbox is clicked
$('input[name="checkbox"]').on('click', function(){
if ( $(this).prop('checked') ) {
$('input[name="showthis"]').fadeIn();
}
else {
$('input[name="showthis"]').hide();
}
});
});
答案 2 :(得分:0)
其他答案很好但是它们有一点问题。如果您在checkbox
选中时刷新了页面,则会因为第一行而隐藏showthis
:
$('input[name="showthis"]').hide();
所以我们在点击监听器之前需要另一个条件,如下所示:
$(function () {
if($('input[name="checkbox"]').prop('checked')){
$('input[name="showthis"]').fadeIn();
} else {
$('input[name="showthis"]').hide();
}
//show it when the checkbox is clicked
$('input[name="checkbox"]').on('click', function () {
if ($(this).prop('checked')) {
$('input[name="showthis"]').fadeIn();
} else {
$('input[name="showthis"]').hide();
}
});
});