Preloading images with jQuery

I'm looking for a quick and easy way to preload images with JavaScript. I'm using jQuery if that's important. I saw this here (http://nettuts.com...): function complexLoad(config, fileNames) { for (var x = 0; x < fileNames.length; x++) { $("<img>").attr({ id: fileNames[x], src: config.imgDir + fileNames[x] + config.imgFormat, title: "The " + fileNa

使用jQuery预加载图像

我正在寻找一种使用JavaScript预加载图像的简单快捷的方法。 如果这很重要,我正在使用jQuery。 我在这里看到这个(http://nettuts.com ...): function complexLoad(config, fileNames) { for (var x = 0; x < fileNames.length; x++) { $("<img>").attr({ id: fileNames[x], src: config.imgDir + fileNames[x] + config.imgFormat, title: "The " + fileNames[x] + " nebula" }).a

Why for var in array returns a string index?

This question already has an answer here: javascript for loop counter coming out as string 3 answers My friend, behold the wonder and curse of prototypical inheritance. What you are iterating over with for..in isn't an array. You are iterating over an Array object. Take a look at the doc: Array indexes are just enumerable properties with integer names and are otherwise identical to g

为什么数组中的var返回一个字符串索引?

这个问题在这里已经有了答案: JavaScript的循环计数器出来作为字符串3答案 我的朋友,看到原型继承的奇迹和诅咒。 你正在迭代for..in不是一个数组。 您正在遍历一个Array对象。 看看文档: 数组索引只是具有整数名称的枚举属性,并且与其他常规对象属性相同。 不能保证for ... in将以任何特定顺序返回索引,并且它将返回所有可枚举的属性,包括具有非整数名称和那些被继承的属性。 由于迭代顺序与实现相关,迭代数

Test for existence of nested JavaScript object key

If I have a reference to an object: var test = {}; that will potentially (but not immediately) have nested objects, something like: {level1: {level2: {level3: "level3"}}}; What is the best way to test for the existence of keys in the most deeply nested objects? alert(test.level1); yields undefined , but alert(test.level1.level2.level3); fails. I'm currently doing something like this:

测试嵌套JavaScript对象键的存在性

如果我有一个对象的引用: var test = {}; 这可能会(但不是立即)嵌套对象,如下所示: {level1: {level2: {level3: "level3"}}}; 测试最深层嵌套对象中密钥的存在的最佳方法是什么? alert(test.level1); 产量undefined ,但alert(test.level1.level2.level3); 失败。 我目前正在做这样的事情: if(test.level1 && test.level1.level2 && test.level1.level2.level3) { alert(test.level1.level2

difference between for loop and for

I found that there is a difference between for loop and for-in loop in javascript. When I define a new array: var a=new Array(); Then I put some value into in but not contiguously for example: a[0]=0;a[1]=1;a[4]=4; When I use for(i=0;i<5;i++) to get the value and use alert to show it, it's different from using for(i in a) . The previous one will show elements in index 2,3 which sh

for循环和for之间的区别

我发现javascript中的for循环和for-in循环有区别。 当我定义一个新的数组时: var a=new Array(); 然后我给一些价值,但不是连续的,例如: a[0]=0;a[1]=1;a[4]=4; 当我使用for(i=0;i<5;i++)来获取值并使用alert来显示它时,它与使用for(i in a) 。 前一个将显示索引2,3中的元素,显示“undefined”,而for-in只显示索引0,1和4.有人可以告诉我为什么? for (... in ...)通常用于遍历对象的属性(这是javaScript用于

Vertical Selection Using Jquery

I have a weird requirement and I don't know how I able to achieve it. I have a textarea which contains the text like text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4

使用jquery进行垂直选择

我有一个奇怪的要求,我不知道如何能够实现它。 我有一个包含文字的textarea text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 text1 text2 text3 text4 text5 text6 text7 text8 等等.. 现在我想仅在t

textbox values based on checkbox checked/unchecked

My problem is simple not so lengthy as looking like. I have 7 textboxes having ids text1, text2, text3, text4 and text5, text6, text7 and one checkbox having id check. I am getting value of text1 and text2 by JSON as 10 and 20 and displaing total 30 in text7. Values of text4,text5 and text6 are empty that is these textboxes display "0". text3 and text4 will be autofilled based on c

基于复选框的文本框值被选中/未选中

我的问题很简单,不像看起来那么冗长。 我有7个文本框,它们具有文本1,文本2,文本3,文本4和文本5,文本6,文本7以及具有标识检查的复选框。 我通过JSON获得text1和text2的值为10和20,并在text7中显示总共30个值。 text4,text5和text6的值为空,即这些文本框显示“0”。 text3和text4将根据复选框进行自动填充。 当我检查复选框时,“点”将在text3中自动填充,“100”将在text4中自动填充。 现在总计text7将显示130.text5

How to loop through an array containing objects and access their properties

I want to cycle through the objects contained in an array and change the properties of each one. If I do this: for (var j = 0; j < myArray.length; j++){ console.log(myArray[j]); } The console should bring up every object in the array, right? But in fact it only displays the first object. if I console log the array outside of the loop, all the objects appear so there's definitely mor

如何遍历包含对象的数组并访问其属性

我想遍历数组中包含的对象并更改每个对象的属性。 如果我这样做: for (var j = 0; j < myArray.length; j++){ console.log(myArray[j]); } 控制台应该调出阵列中的每个对象,对吧? 但实际上它只显示第一个对象。 如果我在控制台之外登录数组,那么所有对象都会显示出来,所以肯定会有更多内容。 无论如何,这是下一个问题。 如何使用循环访问数组中的Object1.x? for (var j = 0; j < myArray.length; j++){

Fastest way to iterate through JSON string in Javascript

I have been using $.each of the jQuery framework to iterate through a JSON string that I receive via an AJAX call. Now this string is sometimes quite huge and as a result IE6/7/8 crawl as a result. I am wondering if there is a faster way to iterate through the entire data. Thank you for your time. How about using the regular javascript functions? If for example you have a JSON object wit

在Javascript中迭代JSON字符串的最快方法

我一直在使用$。每个jQuery框架遍历通过AJAX调用接收的JSON字符串。 现在这个字符串有时相当庞大,因此IE6 / 7/8会因此而抓取。 我想知道是否有更快的方法遍历整个数据。 感谢您的时间。 如何使用常规的JavaScript功能? 例如,如果您的JSON对象中包含项目,则可以仅评估JSON字符串将其转换为javascript对象,然后使用'for(i in object)'对它们进行迭代。

Return value for function instead of inner function in Array.forEach

This question already has an answer here: How to short circuit Array.forEach like calling break? 24 answers Use Array#every for checking the elements function isValid(source, target) { return arr.every(function (el) { return el.value !== 3; }); } The same with Array#some function isValid(source, target) { return !arr.some(function (el) { return el.value === 3;

返回Array.forEach中函数的值而不是内部函数的值

这个问题在这里已经有了答案: 如何使Array.forEach短路像调用break? 24个答案 使用Array#every检查元素 function isValid(source, target) { return arr.every(function (el) { return el.value !== 3; }); } 与Array#some一样 function isValid(source, target) { return !arr.some(function (el) { return el.value === 3; }); } 你不能。 请参阅MDN的文档: 没有办法停止或破

How can I break out of forEach or re structure my function?

This question already has an answer here: How to short circuit Array.forEach like calling break? 24 answers Use .some() instead of .forEach() , and return true when you want to break. Or .every() , and return false to break. //... //WOULD LIKE TO PUT BREAK HERE; // break; return; 'return'适合我。

我如何摆脱forEach或重新构造我的功能?

这个问题在这里已经有了答案: 如何使Array.forEach短路像调用break? 24个答案 使用.some()而不是.forEach() ,并在您想要中断时return true 。 或.every() ,并return false来中断。 //... //WOULD LIKE TO PUT BREAK HERE; // break; return; 'return'适合我。