HTML
<div class="ui-droppable" data-number="P"></div>
JS来源检查
div.ui-droppable
|...
|--attributes:NamedNodeMap
| |...
| |--data-number
| | |...
| | |--nodeValue: "P"
| | |...
| | |--textContent: "P"
| | |--value: "P"
| | |...
| |...
|
|--dataset:DOMStringMap
| |
| |--number: "P"
|...
的jQuery
但是
$(this).data('number');
给我整数 1 。如何使用data
方法获取 P ?
答案 0 :(得分:0)
您没有绑定数据。 您可以通过以下方式访问该数据编号:
$(this).attr('data-number');