Skip to content

Instantly share code, notes, and snippets.

@popomore
Created September 17, 2012 19:20
Show Gist options
  • Save popomore/3739226 to your computer and use it in GitHub Desktop.
Save popomore/3739226 to your computer and use it in GitHub Desktop.
jquery data-api

html

<div id="test" data-value="1"></div>

jquery

$('#test').attr('data-value') !== $('#test').data('value');

.data 会转成数值型

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment