このコードを改善する方法があります:
jQuery('<img />',{alt:"Logo",src:"img/logo.jpg"}).appendTo("#scrittacentro");
jQuery('<h1 />',{text:'THE LCARS COMPUTER NETWORK',class:'cLightOrange lcars'}).appendTo("#scrittacentro");
jQuery('<h2 />',{text:'Authorized Access Only',class:'cDarkBlue helvetica'}).appendTo("#scrittacentro");
jQuery('<h3 />',{text:'Please Report Malfunctions To Engineering Staff On Duty',class:'cDarkBlue helvetica'}).appendTo("#scrittacentro");
このようなものについて:
jQuery(
'<img />',{alt:"Logo",src:"img/logo.jpg"},
'<h1 />',{text:'THE LCARS COMPUTER NETWORK',class:'cLightOrange lcars'},
'<h2 />',{text:'Authorized Access Only',class:'cDarkBlue helvetica'},
'<h3 />',{text:'Please Report Malfunctions To Engineering Staff On Duty',class:'cDarkBlue helvetica'
}).appendTo("#scrittacentro");
前もって感謝します。