如果您在网页,载于IE7/IE8, ll :
停止使用这一文字? 该网页上的文字使因特网探索者运行缓慢。 如果继续运行,你的计算机可能变得不灵敏。
我基本上把这一文字运用到选择中。
你们是否看到了更好的方式来进行这种转变,并在独立实体中消除这种警示?
如果您在网页,载于IE7/IE8, ll :
停止使用这一文字? 该网页上的文字使因特网探索者运行缓慢。 如果继续运行,你的计算机可能变得不灵敏。
我基本上把这一文字运用到选择中。
你们是否看到了更好的方式来进行这种转变,并在独立实体中消除这种警示?
你们正在经营一个挑选人业务的避风港,每个业务都效率不高,特别是在老的浏览器中。
最好由一个选择人操作,并在一个行动中处理所有选择价值。 你们可以这样做,为给你适当的类别名称的选项值建立一个研究表。 这里就是一个例子。 我在整个表格中填满了很多打字(你可以打上其余部分),但这里却看它如何工作。
这应当比你更快得多(或许比你更快100倍):
// class names used for various options
var optionClasses = [
"ART - LETTRES - SPECTACLE",
"ECONOMIE",
"ETRANGER"
];
// the number in the option map corresponds to an array index
// in the optionClasses array. This is done to avoid repeating
// the same string over and over
var optionMap = {
ART - LETTRES - SPECTACLE : 0,
A la une ALS : 0,
Cirque : 0,
Festival multidisciplinaire : 0,
Littérature-édition : 0,
Musique classique : 0,
Photographie : 0,
Cinéma : 0,
/* .... */
ECONOMIE : 1,
A la une Economie : 1,
/* ... */
ETRANGER : 2,
A la une Etranger : 2
/* fill in the rest of the data here */
};
jQuery("select option").each(function() {
if (this.value && this.value in optionMap) {
var clsNum = optionMap[this.value];
$(this).addClass(optionClasses[clsNum]);
}
});
它很简单,应该比你以前更快地开展许多工作。 它有一个挑选人操作,然后使用一个洗衣桌,寻找特定选择价值的适当类别名称。
这类挑选器在燃烧中似乎也很缓慢。
我会猜测“[选择价值=......]”部分造成 j,以扫描整个文件中寻找对应内容的所有内容。 每个选任人中每一名
我有一只dle子,发现在火ox中,如果我使用这样的方法,它会更能作出反应:
var options = $("option");
var $XXX = options.filter("[value=VALUE1], [value=VALUE2], [value=VALUE3]");
// etc
这样做首先会产生一个只包含某些选择的分类物体/收集,然后从那里使用挑选器过滤所需选择。
修改你的法典以使用这种方法。
根据我的理解,你的守则是把选择放在第一种选择的基础上。
大量人员在人力部工作。 而不是装设一个异常长的多功能元件,而是将数据作为阵列和物体储存,并在必要时装载。 这样一来,这些选择就算不了。
//storing second options as objects and arrays
var second = {
art : [
{text: artOption1Text ,value: artOption1Value },
{text: artOption2Text ,value: artOption2Value },
{text: artOption3Text ,value: artOption3Value }
...
],
social : [
{text: socialOption1Text ,value: socialOption1Value },
{text: socialOption2Text ,value: socialOption2Value },
{text: socialOption3Text ,value: socialOption3Value }
...
]
...
}
var secondSelect = $( secondselect ); //reference your second select
$( firstselect ).on( change ,function(){ //on change of first select
var newOptions = second[this.value]; //get the new values
secondSelect.children().remove(); //remove current options
$.each(newOptions,function(index,option){ //add the new options
$( <option> )
.attr( value ,option.value)
.text(option.text)
.appendTo(secondSelect);
});
}
What to look for in performance analyzer in VS 2008 I am using VS Team system and got the performance wizard and reports going. What benchmarks/process do I use? There is a lot of stuff in the ...
We have a number of items coming in from a web service; each item containing an unknown number of properties. We are storing them in a database with the following Schema. Items - ItemID - ...
Are there some noticeable outcomes in terms of performance or other aspects to follow semantic HTML?
I m using Visual Studio 2008 (with the latest service pack) I also have ReSharper 4.5 installed. ReSharper Code analysis/ scan is turned off. OS: Windows 7 Enterprise Edition It takes me a long time ...
As a learning experience I recently tried implementing Quicksort with 3 way partitioning in C#. Apart from needing to add an extra range check on the left/right variables before the recursive call, ...
I ve tried searching for this but it s pretty difficult to put into words. Basically, our site will run fine for most users without any issues. Sometimes though, those of us who use the site pretty ...
Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...
So I m running perl 5.10 on a core 2 duo macbook pro compiled with threading support: usethreads=define, useithreads=define. I ve got a simple script to read 4 gzipped files containing aroud 750000 ...