- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用 Jquery 创建菜单,如下所示:
<div class="prof_info1">home</div><div class="prof_info2">info2</div><div class="prof_info3">info3</div>
Jquery 代码如下:
$(document).ready(function(){
$(".prof_info1").unbind("click").click(function(event) {
$("#main").html('<img src="img/spin.gif" class="spin">');
location.replace("?&id=<?=$id?>")
return false;
});
$(".prof_info2").unbind("click").click(function(event) {
$("#main").html('<img src="img/spin.gif" class="spin">');
$("#main").load('?a=2&id=<?=$id?>');
return false;
});
$(".prof_info3").unbind("click").click(function(event) {
$("#glavni").html('<img src="img/spin.gif" class="spin">');
$("#glavni").load('?a=3&id=<?=$id?>');
return false;
});
});
是否有更简单的方法来编写此 Jquery 代码并使用更少的代码?类似的东西
if click somethind{
...
}elseif{
....}
最佳答案
尝试这个解决方案。
<div class="prof_info redirect">
<a href="?&id=1">home</a>
</div>
<div class="prof_info ajax">
<a href="?&id=1">info2</a>
</div>
<div class="prof_info ajax">
<a href="?&id=3">info3</a>
</div>
js
$(document).ready(function(){
$(".prof_info a").click(function(event) {
$("#main").html('<img src="img/spin.gif" class="spin">');
if($(this).parent('.redirect').get(0)){
location.replace($(this).attr('href'));
}else{
$("#main").load($(this).attr('href'));
}
return false;
});
});
关于代码较少的 Jquery 菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2801816/
我正在使用Visual Studio 2012和Web Essential 2012,而Less生成的css与预期的不一样 //style.less .selector{ max-heig
我创建了一个基于LESS的小型混合器,用于以标准或视网膜格式输出图像。我无法理解将变量包装在与此相伴的一些CSS URL中-当我编译下面的代码时,我最终得到 url('http://sample.co
有人可以帮助我使用 CSS(less)吗,因为我似乎还不能理解它是如何工作的,我已经通过 node.js 安装了它,但现在如何将它链接到我的代码/网页? 由于某种原因,选择框没有输出到网页上,因为很可
我知道大多数算术运算只能使用按位运算符( Add two integers using only bitwise operators? 、 Multiplication of two integers
我需要在 less 中选择一个类的第 n 个子元素,而不是计算特定类的元素。例如,给定: 李 li class="skip_this" 李 李 李 我想让第 n 个 child 在计数时跳过 skip
当我单击一个按钮时,我进行了一个 ajax 调用,该调用将不同的 html 代码加载到一个 ID 为“main”的 div 中。我可以毫无问题地显示 html 代码,但我找不到将 css 和 js 代
我正在使用非常有限的 Shell 开发嵌入式 Linux。内置命令非常少。 我想检查 gpio 端口。这适用于以下内容。但它需要很多 CPU/IO - 电源!!所以我想像 sleep 一样得到短暂的休
我是一名优秀的程序员,十分优秀!