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
<a href="http://www.miniui.com">一号</a>
<a href="http://www.miniui.com">二号</a>
复制代码
$("a").each(function () {
var text = $(this).html();
if (text == "二号") {
$(this).css("color", "gray");
$(this).attr('href', '#');
$(this).click(function (event) {
event.preventDefault();
});
}
});
复制代码
欢迎光临 jQuery MiniUI (http://miniui.com/discuss/)
Powered by Discuz! X2