Maison > développement back-end > tutoriel php > JavaScript 我这样写with 格式有什么问题吗?为什么不行?

JavaScript 我这样写with 格式有什么问题吗?为什么不行?

WBOY
Libérer: 2016-06-06 20:12:25
original
807 Les gens l'ont consulté

正常运行的结果:

<code>aobj.href="abcdefghi";
aobj.target="_blank";
aobj.style.backgroundColor='yellow';
aobj.style.float= "left"; 
aobj.style.overflow="hidden";
aobj.appendChild(img);</code>
Copier après la connexion
Copier après la connexion

用了with之后不能运行的结果:

<code>wiht(aobj)
{
href="abcdefghi";
target="_blank";
style.backgroundColor='yellow';
style.float= "left"; 
style.overflow="hidden";
appendChild(img);
}
</code>
Copier après la connexion
Copier après la connexion

哪里有问题,还望指教!

<code>直接帮我改了我再摸索吧,谢谢了!</code>
Copier après la connexion
Copier après la connexion

回复内容:

正常运行的结果:

<code>aobj.href="abcdefghi";
aobj.target="_blank";
aobj.style.backgroundColor='yellow';
aobj.style.float= "left"; 
aobj.style.overflow="hidden";
aobj.appendChild(img);</code>
Copier après la connexion
Copier après la connexion

用了with之后不能运行的结果:

<code>wiht(aobj)
{
href="abcdefghi";
target="_blank";
style.backgroundColor='yellow';
style.float= "left"; 
style.overflow="hidden";
appendChild(img);
}
</code>
Copier après la connexion
Copier après la connexion

哪里有问题,还望指教!

<code>直接帮我改了我再摸索吧,谢谢了!</code>
Copier après la connexion
Copier après la connexion

wiht拼写错误

<code class="javascript">aobj = {
    href: null,
    target: null,
    style: {},
    appendChild: null
};
with(aobj) {
    href="abcdefghi";
    target="_blank";
    style.backgroundColor='yellow';
    style.float= "left"; 
    style.overflow="hidden";
    appendChild(img);
}</code>
Copier après la connexion

with里面用不了没定义的属性

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal