admin管理员组文章数量:1341411
I would like a PhP-based MediaWiki server to transfer data to client-side JavaScript. Some programmers use custom attributes in HTML tags to feed data, for example:
<input type="text" customAttribute="Some custom data"></input>
The problem is that the input
element is visible on my output page (it creates an input box!).
Are there invisible HTML elements I can use to feed in information without affecting the page visually? Would it be possible to have custom HTML tags for that purpose?
I would like a PhP-based MediaWiki server to transfer data to client-side JavaScript. Some programmers use custom attributes in HTML tags to feed data, for example:
<input type="text" customAttribute="Some custom data"></input>
The problem is that the input
element is visible on my output page (it creates an input box!).
Are there invisible HTML elements I can use to feed in information without affecting the page visually? Would it be possible to have custom HTML tags for that purpose?
Share edited Nov 9, 2012 at 14:42 Randomblue asked Jul 23, 2011 at 21:54 RandomblueRandomblue 116k150 gold badges362 silver badges557 bronze badges4 Answers
Reset to default 10You can use a type="hidden"
input.
<input type="hidden" customAttribute="My data"/>
http://jsfiddle/9Gpby/
jQuery has a very nice .data()
function exactly for that use case. You can attach data to elements without polluting the attributes, and you don't have to mess around with HTML.
There aren't really any HTML tags that wouldn't be visible in source code (does that even make sense?). The closest one that's monly used for storing data is <input type="hidden">
. If you use HTML5, you can also use data attributes to store information.
The hidden
attribute could be used.
<input hidden type="text" customAttribute="Some custom data"></input>
本文标签: phpquotinvisiblequot data HTML tagStack Overflow
版权声明:本文标题:php - "invisible" data HTML tag - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743668740a2519174.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论