<li ><a href="" id="close">Close</a></li>
<script>
$(document).ready(fucnction(){
$(#close).addClass("ui-state-disabled");
});
</script>
写完之后我无法通过使用jquery看到菜单列表禁用菜单项?
答案 0 :(得分:4)
代码中的两个错误:
1)你错过了选择者的报价
2)文档准备好了“功能”单词拼写错误
$("#close").addClass("ui-state-disabled");
答案 1 :(得分:0)
检查一下:
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<script src="http://ajax.microsoft.com/ajax/jQuery/jquery-1.9.1.min.js "></script>
</head>
<body >
<li ><a href="" id="close">Close</a></li>
</body>
<script>
$(document).ready(function(){
$('#close').addClass("ui-state-disabled");
});
</script>
</html>