jquery .load関数でロードされたコンテンツの内部にjqueryインナーファンクションをロードしようとしていますが、これに似たトピックが多数見られますが、適切なソリューションを入手してください。ajaxedコンテンツ内のJqueryインナーフェード
これは私がロードするために使用するスクリプトのコンテンツ:
$(document).ready(function() {
// Check for hash value in URL
var hash = window.location.hash.substr(1);
var href = $('.nav li a').each(function(){
var href = $(this).attr('href');
if(hash==href.substr(0,href.length-5)){
var toLoad = hash+'.php #content';
$('#content').load(toLoad)
}
});
$('.nav li a').click(function(){
var toLoad = $(this).attr('href')+' #content';
$('#content').hide('fast',loadContent);
$('#load').remove();
$('#sub_corpo').append('<span id="load">sto caricando il contenuto...</span>');
$('#load').fadeIn('normal');
window.location.hash = $(this).attr('href').substr(0,$(this).attr('href').length-5);
function loadContent() {
$('#content').load(toLoad,'',showNewContent())
}
function showNewContent() {
$('#content').show('normal',hideLoader());
}
function hideLoader() {
$('#load').fadeOut('normal');
}
return false;
});
})。私は、コンテンツがロードされたときに、この関数を呼び出す方法がわからない
<script >
function(){
$('#slideshow').innerfade({
speed: 4500,
timeout: 6000,
type: 'sequence',
containerheight: '480px'
});
}
</script>
:
が、これはinnerfade機能です。私は本当にあなたの提案に感謝します。
Dimtiri
ショーンありがとう、それは動作しません... – Dimitri