摘要:
1. 绑定跟解除绑定 $(function(){ $("#saveBackButton").attr("onclick",'').unbind('click').click(function(){ window.location.href=''; }); }); 2.获取一组radio被选中项的值 var item = $('input[@name=items][@checked]').val(); 3.获取select被选中项的文本 var item = $("select[@n 阅读全文
摘要:
$("img").error(function() { $(this).attr("src", "Images/error.jpg"); }); 当图片路径不存在,可以设置为其他有好的图片来显示 阅读全文