我想将输入#nom
的值显示为label
标记中的字符串
<input type="text" id="nom">
<input type="button" id="ok" value="afficher" onclick="affiche();">
<label id="msg"></label>
我尝试了以下脚本,但它不起作用并且没有返回任何错误。
function affiche() {
var nom = document.getElementById("nom").value;
$("#msg").val(nom);
}
我做错了什么?