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.
我正在调用返回一些 html 脚本的数据库。有没有办法让 html 标记(如输入标记)将这些 html 脚本保存在其“id”或“值”中,而无需在页面上呈现 html?
您可以对 HTML 进行 base64 编码,然后在需要时对其进行解码
使用jQuery的数据函数
$("#myInput").data("long-html", "your_data_here");