我写的这段代码似乎是正确的,但出现了这个错误:
Uncaught ReferenceError: show is not defined
这是我的简单代码:
(function ($) {
$(document).ready
(
function () {
$('.mapban').parent().jclip(0, 0, 1060, 750);
$('#mapplane').draggable();
$('#mapplane > div ').css( 'display', 'none' );
$('.button').attr('onclick','show(this)');
function show(button){
alert(button);
}
}
)
})(jQuery)