我正在尝试整合连续播放html网站的连续声音。我正在寻找一个jquery插件,它给了我类似jquery mobile的功能。它必须让我能够使用ajax调用替换dom的一部分。另外它应该执行通过ajax获取的javascript。
我希望已经有一个插件可以处理外部链接,表单,哈希历史等等,jquery mobile都可以。有一个吗?
感谢
的Lukas
答案 0 :(得分:2)
jQuery已经具备了这种能力.....
<强> HTML 强>
<div id="itemToChange">This DOM text will be changed</div>
<强> JS 强>
//Fetch new JS Code that you want to execute..lets say it contains function doStuff()
$.getScript('yourJsCode.js', function (){
//Now update the content of div with id 'itemToChange' to contain new DOM element
$('#itemToChange').load('newContent.php',function(response, status, xhr) {
if (status == "error") {
$('#itemToChange').html("Sorry but there was an error: " + xhr.status + " " + xhr.statusText);
}else{
//Successfully loaded JS and new DOM Element..call JS Function
doStuff();
}
});
答案 1 :(得分:2)
这似乎做你需要的,很容易找到: