jQuery MiniUI

标题: disabled属性问题 [打印本页]

作者: hj202471    时间: 2013-5-21 15:49:04     标题: disabled属性问题

在ie下效果.
[attach]1969[/attach]
在google浏览器下效果
[attach]1970[/attach]
s = s + '<a disabled class="Edit_Button"  >编辑</a>';这样写ie下是没问题的

因该要用什么属性才能在不同浏览器下效果一样.






作者: factory    时间: 2013-5-21 16:32:13

你通过样式和修改他的href来做吧,并且取消掉事件的默认行为,
给你个例子,比如,我页面上放2个a
  1. <a href="http://www.miniui.com">一号</a>
  2.     <a href="http://www.miniui.com">二号</a>
复制代码

  1. $("a").each(function () {
  2.             var text = $(this).html();
  3.             if (text == "二号") {
  4.                 $(this).css("color", "gray");
  5.                 $(this).attr('href', '#');
  6.                 $(this).click(function (event) {
  7.                     event.preventDefault();
  8.                 });
  9.             }
  10.         });
复制代码





欢迎光临 jQuery MiniUI (http://miniui.com/discuss/) Powered by Discuz! X2