这段代码好吗?
@H_404_9@解决方法
var wlocation = $(this).closest('.myclass').find('li a').attr('href'); if (wlocation.prop !== undefined) { window.location = wlocation; }
或者我应该做
var wlocation = $(this).closest('.myclass').find('li a').attr('href'); if (wlocation.prop !== "undefined") { window.location = wlocation; }
我喜欢这个:
if (wlocation !== undefined)
但如果你喜欢第二种方式不会像你发布的那样。这将是:
if (typeof wlocation !== "undefined")