jQuery(document).ready(function(){} 没有在项目一开始运行
<scripttype="text/javascript">jQuery(document).ready(function(){alert("yunxingzhong")...
<script type="text/javascript">
jQuery(document).ready(function() {
alert("yunxingzhong");
$('.page-container form').submit(function(){
var username = $(this).find('.username').val();
var password = $(this).find('.password').val();
if(username == '') {
$(this).find('.error').fadeOut('fast', function(){
$(this).css('top', '27px');
});
$(this).find('.error').fadeIn('fast', function(){
$(this).parent().find('.username').focus();
});
return false;
}
if(password == '') {
$(this).find('.error').fadeOut('fast', function(){
$(this).css('top', '96px');
});
$(this).find('.error').fadeIn('fast', function(){
$(this).parent().find('.password').focus();
});
return false;
}
});
</script>
我在页面上写了这个代码不是应该页面一加载就运行吗 展开
jQuery(document).ready(function() {
alert("yunxingzhong");
$('.page-container form').submit(function(){
var username = $(this).find('.username').val();
var password = $(this).find('.password').val();
if(username == '') {
$(this).find('.error').fadeOut('fast', function(){
$(this).css('top', '27px');
});
$(this).find('.error').fadeIn('fast', function(){
$(this).parent().find('.username').focus();
});
return false;
}
if(password == '') {
$(this).find('.error').fadeOut('fast', function(){
$(this).css('top', '96px');
});
$(this).find('.error').fadeIn('fast', function(){
$(this).parent().find('.password').focus();
});
return false;
}
});
</script>
我在页面上写了这个代码不是应该页面一加载就运行吗 展开
4个回答
展开全部
写法没问题,前面引用了jquery的js文件了么?
不过一般都用$代替jQuery
初始化方法一般简写成$(document).ready(function()
{
alert("hello world");
});甚至
$(function(){
alert("hello world");
});
不过一般都用$代替jQuery
初始化方法一般简写成$(document).ready(function()
{
alert("hello world");
});甚至
$(function(){
alert("hello world");
});
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这个是页面加载完成后执行的,加载的时候可不会执行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
jQuery(document).ready(function(){}
这个是在dom加载完成之后才会立刻执行的
这个是在dom加载完成之后才会立刻执行的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询