我正在使用此代码获取提交的值,但它无法给我该值,而是说undefined
这是我的代码:
$("#btnSearch").click(function() {
var keyword = $("#key").attr("value");
alert(keyword);
});
<div id="page-wrap">
<input type="text" id="key" dir="rtl" lang="ar" />
<button id="btnSearch">Search</button>
</div>
现在,如果我搜索'رمضان'
警报正在返回'undefined'
,是否愿意听到类似的替代品$("#key").attr("value");
?