hello world
by pgg2ymm
HTML
<div>
<button class="helloWorld">世界,你好。</button>
</div>
CSS
.helloWorld {
background:#ff0;
border:none;
}
JavaScript
$(function () {
$('.helloWorld').click(function () {
alert('Hello , World !');
});
});