Js onclick='function';

Fermé
kiko - Modifié par kiko le 16/02/2012 à 10:54
 kiko - 16 févr. 2012 à 13:43
Bonjour,
je ne comprends pas pourquoi ce code ne passe pas :
var body = document.getElementsByTagName('body')[0],
p = document.cretateElement('p'),
p1 = document.cretateElement('p'),
input = document.createElement('input'),
input1 = document.createElement('input');
input.onclick='da';
input1.onclick='da';
p.appendChild(input);
body.appendChild(p);
p1.appendChild(input1);
body.appendChild(p1);
function da(){alert('ok')}

3 réponses

choubaka Messages postés 39403 Date d'inscription jeudi 4 avril 2002 Statut Modérateur Dernière intervention 17 novembre 2024 2 102
16 févr. 2012 à 11:00
Bonjour

Ce ne serait pas

p = document.createElement('p'),
p1 = document.createElement('p'),

au lieu de

p = document.cretateElement('p'),
p1 = document.cretateElement('p'),
0
heu oui prenez le code sans ereur de syntax .cordialement. Ca marche pas avec un cod juste.
0
je ne comprends pas pourquoi ce code ne passe pas voici le bon code juste :
var body = document.getElementsByTagName('body')[0],
p = document.createElement('p'),
p1 = document.createElement('p'),
input = document.createElement('input'),
input1 = document.createElement('input');
input.onclick='da';
input1.onclick='da';
p.appendChild(input);
body.appendChild(p);
p1.appendChild(input1);
body.appendChild(p1);
function da(){alert('ok')}
0