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.
有没有办法可以定义字符集以及属于jsFiddle<meta>上的标签的其他信息?
<meta>
我知道他们侧面板的“信息”部分,但这不允许<meta>标签。
提前致谢!
是的,只要把它放在 CSS 部分:
</style> <meta name="description" content="Free Web tutorials" /> <style>
使用 jQuery 框架在 Javascript 部分进行测试:
var desc = $('meta[name="description"]').attr("content"); alert(desc);
更新添加了一个小提琴
http://jsfiddle.net/mhart/3fHrt/