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.
我有这个输入
<input type="text" class="form-control" value="כפר חב"ד" name="city" >
我的问题是,当将值插入数据库时,我得到了这个 כפר חב 最后一个字母,“ sing 消失了,我怎样才能让它工作?
把外面的双引号改成单引号:
<input type="text" class="form-control" value='כפר חב"ד' name="city" >