我想在输入字段输入文本时尝试触发按钮点击警告


 < script type = text / javascript>& #xA; $(function(){
 $('#buttonVal')。click(function(){
< input id =“messageID”type =“text”/>&#xA ; var newAlert = $(“input#messageID”),
 newAlertOk = $ newAlert.val();
 alert(“this is new alert”+ newAlertOk);
< / script&gt ;

&#xA;&#xA; 当我点击按钮时没有任何反应。请问我错在哪里?&#xA;我编辑过包含点击事件< / p>&#XA;
答案 0 :(得分:0)
从$
$newAlert.val();
$("button").click(function() {
var newAlert = $("input#messageID");
var newAlertOk = newAlert.val();
alert("this is new alert " + newAlertOk);
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<input id="messageID" type="text"/>
<button>Click</button>
注意:不要在script
标记