0
嗨我試圖改變我這樣的內容:
$("ul#nav li a").click(function(){
var href = $(this).attr("id"); //getID in a String
getContent(href);
$("ul#nav li a").removeClass("active"); //Active
var select = $("#" + href);
select.addClass("active");
});
//getContent --- URL aufrufen
function getContent(href) {
$.ajax({
type : "GET",
//url: href + ".html",
//url : "http://localhost/ProVid/" + href + ".html",
url: "http://webuser.hs-furtwangen.de/~lieneman/pages/" + href + ".html",
//url: "http://webuser.hs-furtwangen.de/~lieneman/pages/vorstellung.html",
dataType : "html",
beforeSend : function(xhr) {
xhr.overrideMimeType("text/html; charset=ISO-8859-1");
},
success : parseHTML,
error : function(xhr, ajaxOptions, thrownError) {
alert(xhr.status);
$('#content').html("<h3 style='text-align: center;'>Es ist ein Fehler aufgetreten</h3>");
}
});
}
function parseHTML(html) {
content = $(html).filter("#content").text();
titel = $(html).filter("#title").text();
video = $(html).filter("#video").text();
$("#content").html(content);
$("#title").html(titel);
$("#video").html(video);
}
它僅工作了正常的HTML內容。但我想加載一個vimeo視頻(iFrame)。
明鏡Nachbereitungs-Baustein