js/jquery 所有页面点击事件(持续更新)
// 切换菜单
菜单1
菜单2
$('.box .box-item').on('click', function () {
$(this).stop(true, false).addClass('act').siblings().stop(true, false).removeClass('act');
});
//radio 点击事件
选项1
选项2
$('input[type=radio][name=MealType]').change(function () {
console.log(this.value)
})