<script type="text/javascript">
$(function () {
$("#seltest").bind("change",function(){
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
});
});
</script>
$(function () {
$("#seltest").bind("change",function(){
if ($(this).val() == "苹果")
$(this).css("background-color", "red");
else
$(this).css("background-color", "green");
});
});
</script>
2016-05-14
g根本就没有必要插件,自己写一个简单到死 $("#Text3").val(
$("#Text1").val()-$("#Text2").val()
);
$("#Text1").val()-$("#Text2").val()
);
2016-05-14
已采纳回答 / hola1
1.你的代码还是没有灵活运用jQuery,还是用的javascript,里面代码嵌套混用了.2.当然可以用if else,这个可以通用。在里面获取属性,可以var e = $("span").(eq:index);获取到指定元素,然后e.attr("你想获取的属性名");3.jQuery里面没有onmouseover,只有mouseover,前面的on得去掉,跟js是不一样的。
2016-05-14
在jQuery中,通过$.browser对象可以获取浏览器的名称和版本信息,如$.browser.chrome为true,表示当前为Chrome浏览器,$.browser.mozilla为true,表示当前为火狐浏览器,还可以通过$.browser.version方式获取浏览器版本信息。
2016-05-14
$(document).ready(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
或
$(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
或
$(function(){
$("#btntest").bind("click", function () {
$("#tip").html("我被点击了!");
});
});
2016-05-13