Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想打印 id 具有点(.)s 的文本框值。
前任:
<input type="text" id="abc.xyz" value="Hiii"/>
如何使用 jquery 打印此值。
你需要逃脱点。
$('#abc\\.xyz').val();
看这里
您也可以使用以下方法执行此操作,
$("input[id='abc.xyz']")
用于\\转义.运算符,因为它是 jquery 中的类选择器,
\\
.
尝试这个..
$("#abc\\.xyz").val();