Mã này có tốt không?Kiểm tra mã jQuery/Javascript, nếu chưa được xác định
var wlocation = $(this).closest('.myclass').find('li a').attr('href');
if (wlocation.prop !== undefined) { window.location = wlocation; }
hay tôi nên làm
var wlocation = $(this).closest('.myclass').find('li a').attr('href');
if (wlocation.prop !== "undefined") { window.location = wlocation; }
wlocation chỉ là một chuỗi (giá trị của thuộc tính href) vì vậy nó có không bất cứ tài sản prop ... – Bruno
Cảm ơn, sửa chữa! – Diego
Cảm ơn rất nhiều bạn. – Jeremy