Opened 11 years ago
Closed 11 years ago
#10249 closed bug (wontfix)
attr()
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | None |
Component: | attributes | Version: | 1.6.3 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
<div id="ctabs">
<ul>
<li value="ctab1" class="active">Закладка</li> <li value="ctab2">Закладка2</li>
</ul>
</div>
$("#ctabs ul li").click(function(){
v = $(this).attr('value');
v = 0; ??? });
return only if value="(integer)". it work normally?
Change History (2)
comment:1 Changed 11 years ago by
Component: | unfiled → attributes |
---|---|
Owner: | set to [email protected]… |
Priority: | undecided → low |
Status: | new → pending |
comment:2 Changed 11 years ago by
Resolution: | → wontfix |
---|---|
Status: | pending → closed |
Sorry, no need to make a test case. Force of habit.
Note: See
TracTickets for help on using
tickets.
Thanks for taking the time to contribute to the jQuery project! Please provide a complete reduced test case on jsFiddle to help us assess your ticket.
Additionally, be sure to test against the jQuery Edge version to ensure the issue still exists. To get you started, use this boilerplate: http://jsfiddle.net/FrKyN/ Open the link and click to "Fork" (in the top menu) to get started.
Keep in mind that the value attribute on an li is only valid(although deprecated) if used for a certain reason: http://www.w3.org/TR/html4/struct/lists.html#adef-value-LI
This is why you are getting the values you are getting. It is default browser behavior.
However, to retrieve the value attribute instead of the property (which is being retrieved with .attr() for backwards compatbility reasons), use the raw function .getAttribute(): http://jsfiddle.net/timmywil/fb4fM/1/