我将鼠标悬停在类上".airportdetails"
,如果我单击整个 div 输入,则现在只显示文本
这是小提琴
$(document).ready(function () {
$(".airportdetails").mouseover(function() {
$("li a", this).show();
}).mouseout(function(){
$("li a", this).hide();
});
})
$('.airportdetails').click( function() {
var $newcheck = $(this).find(":checkbox");
if (!$newcheck.prop("checked") ) {
$newcheck.prop("checked", true);
} else {
$newcheck.prop("checked", false);
}
});
$('.airportdetails input').click(
function(event){
event.stopPropagation();
});