如何获取对象的id,我知道id是hola,但我需要在运行时获取它
alert($('#hola').id);
这个想法是这样的:
<script>
(function ($) {
$.fn.hello = function(msg) {
alert('message ' + msg);
alert('is from ' + this.id); // this.id doesn't work
};
})(jQuery);
$('#hola').hello('yo');
</script>