0
任何人都可以指出我的錯誤,試圖找到其中包含「123456」的標籤的href屬性的值嗎?在ajax響應中獲取href值
$('input').click(function(){
$.ajax({
type : "GET",
url : 'transfer.html',
dataType : "html",
success: function(data) {
alert($(data).filter('a[href*="123456"]').attr('href'));
},
error : function() {
alert("Sorry, The requested property could not be found.");
}
});
});
感謝提前:)
p.s.我嘗試了1000種不同的方式,但我不會把它們放在這裏!他們都沒有爲我工作! :( – Amir