0
我嘗試寫下如果用戶不選擇id爲'id-1'的表單「,如下所示,但是這種方式就好像if語句被傳遞一樣。什麼可能是錯的?jQuery不選擇表單時
$(document).on("keyup",
function(p_k) {
var target = $(this);
if (target.is("id-1")) {} else {
//do this ...
}
}
);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<h1>Chat#index</h1>
<ul id="chat_area">
</ul>
<input id="id-1" class='form-control' type="text">
'if(target.attr(「id」)=='-1')' –
你可能會向我們展示html嗎? – HTMLNoob
我添加了html部分。謝謝。 – Arch