0

这是一个简单的代码,它接受输入并将其打印在同一页面上。但是当我单击按钮时它不起作用。请帮助解决这个问题。

<html>
<head>
<script>
function changeHTML() {
    $("#withjQuery").html($("#theInput").val());
}

</script>

<body>
<input type='text' id='theInput' value='Write here' />

<input type='button' onClick='changeHTML();' value='See what you wrote with jQuery.html'/>

<div id="withjQuery"></div>

</body>

</head>
4

1 回答 1

2

页面中没有包含 jQuery 库

添加

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>

前任

<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script>
function changeHTML() {
    $("#withjQuery").html($("#theInput").val());
}

</script>

</head>

<body>
<input type='text' id='theInput' value='Write here' />

<input type='button' onClick='changeHTML();' value='See what you wrote with jQuery.html'/>

<div id="withjQuery"></div>

</body>
</html>

演示:小提琴

于 2013-08-11T04:51:17.693 回答