我是JavaScript的新手。我将多个JavaScript文件合并为一个,但现在有时浏览器(特别是firefox)会冻结2-3秒。请看看我的JavaScript。
$(document).ready(function(){
$(".static_class").click(function(){
var $select = $("select[name=class]");
var start = $(this).val() === "1"?5:9;
if($(this).val()==="1")
{
$("#exp").hide();
$("#abt").hide();
$("#bac").hide();
$("#scholar").show("slow");
var end = start + 7;
}
if($(this).val()==="2")
{
$("#exp").hide();
$("#scholar").show("slow");
$("#bac").hide();
$("#abt").show("slow");
var end = start + 3;
}
if($(this).val()==="3")
{
$("#exp").hide();
$("#bac").show("slow");
$("#scholar").hide();
$("#abt").show("slow");
}
if($(this).val()==="4")
{
$("#abt").hide();
$("#scholar").hide();
$("#exp").show("slow");
$("#bac").hide(); }
$select.empty();
$select.append("<option value='0'>Sinif seçin</option>");
for(;start < end;start++){
$select.append("<option value='"+start+"'>"+start+"</option>");
}
});
/*placeholder*/
if(!Modernizr.input.placeholder){
$('[placeholder]').focus(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
input.removeClass('placeholder');
}
}).blur(function() {
var input = $(this);
if (input.val() == '' || input.val() == input.attr('placeholder')) {
input.addClass('placeholder');
input.val(input.attr('placeholder'));
}
}).blur();
$('[placeholder]').parents('form').submit(function() {
$(this).find('[placeholder]').each(function() {
var input = $(this);
if (input.val() == input.attr('placeholder')) {
input.val('');
}
})
});
}
/*populate*/
$("#school").hide();
$("#class").hide();
searchSchool = function(regionSelect){
var selectedRegion = $("select[name*='"+regionSelect.name+"'] option:selected").val();
if (selectedRegion!='0'){
$.ajax({
type: "POST",
url : "core/code/includes/search.php",
data: {region_id: selectedRegion},
success: function(result, status, xResponse){
if (result!=''){
$("#school").show();
$("#class").show();
$("#school").html(result);
$("#error").hide("slow");
}
else{
$("#error").html("Bu regionda məktəb yoxdur");
$("#error").show("slow");
$("#school").html('');
$("#school").hide();
$("#class").hide();
}
},
error: function(e){
alert(e);
}
});
}
else{
$("#error").html('Xahiş edirik region seçin');
$("#error").show("slow");
$("#school").html('');
$("#school").hide();
$("#class").hide();
}
}
$("#reg").RSV({
onCompleteHandler: myOnComplete,
rules: [
"required,fname,Adınızı daxil edin",
"required,mname,Atanızın adını daxil edin.",
"required,lname,Soyadınızı daxil edin.",
"required,email,Email adresinizi daxil edin.",
"valid_email,email,Email adresinizi düzgün daxil edin.",
"required,login,İstifadəçi adınızı daxil edin.",
"length>2,login,İstifadəçi adınız 2 hərfdən çox olmalıdır.",
"required,pwd,İstifadəçi adınızı daxil edin.",
"required,type,İstifadəçi tipini seçin.",
"if:type=1,required,region,Rayonu daxil edin",
"if:type=1,required,school,Məktəbi daxil edin",
"if:type=1,required,class,Sinfi daxil edin",
"if:type=2,required,region,Rayonu daxil edin",
"if:type=2,required,school,Məktəbi daxil edin",
"if:type=2,required,class,Sinfi daxil edin",
"if:type=2,required,group,Qrupu daxil edin",
"if:type=3,required,subject,Fənni daxil edin"
]
});
});
function myOnComplete()
{
alert("The form validates! (normally, it would submit the form here).");
return true;
}
jQuery(function($){
$("#dob").mask("99.99.9999");
});
它出了什么问题?请忽略本地化的消息。我的问题是关于文件结构。我使用了多个函数,并且不知道哪个部分被破坏,或者这是否是错误的编码风格使浏览器冻结。
提前谢谢
答案 0 :(得分:3)
问题通常不在Javascript代码中(我没有看你的代码),而是在你的HTML页面中加载顺序。为了获得更好的加载行为,您应该将Javascript标记添加到页面底部。这背后的原因是,浏览器必须按顺序加载和执行Javascript(因为脚本可能相互依赖),而其余的可以大部分并行完成。
答案 1 :(得分:0)
该代码中的任何内容都没有让我感觉太慢,所以它可能不是JavaScript。我建议加载整个网页并对其进行分析。分析可能会对情况有所了解。在FireFox中,您可以查看FireBug或使用Shark。
在FireBug中,开始分析的一种方法是使用Javascript,如下所示。
<script>
console.profile('ProfileName')
// insert code to profile
console.profileEnd()
</script>
在上面的示例中,注释代表上面的代码,它可以完成所有准备工作。把它们扔到你想要的任何地方。 “ProfileName”可以更改为您要调用此特定配置文件的任何名称。我会在你的代码中粘贴其中的几个,这样你就可以看到了什么。