Rumah > Artikel > hujung hadapan web > html noscript标签怎么用
html noscript标签用来定义在脚本未被执行时的替代内容(文本),此标签可被用于可识别 3f1c4e4b6b16bbbd69b2ee476dc4f83a 标签但无法支持其中的脚本的浏览器。
html noscript标签怎么用?
作用:用来定义在脚本未被执行时的替代内容(文本)。
说明:此标签可被用于可识别 3f1c4e4b6b16bbbd69b2ee476dc4f83a 标签但无法支持其中的脚本的浏览器。
注释:
如果浏览器支持脚本,那么它不会显示出 noscript 元素中的文本。无法识别 3f1c4e4b6b16bbbd69b2ee476dc4f83a 标签的浏览器会把标签的内容显示到页面上。为了避免浏览器这样做,您应当在注释标签中隐藏脚本。
老式的(无法识别 3f1c4e4b6b16bbbd69b2ee476dc4f83a 标签的)浏览器会忽略注释,这样就不会把标签的内容写到页面上,而新式的浏览器则懂得执行这些脚本,即使它们被包围在注释标签中!
html noscript标签使用示例
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> <!-- document.write("Hello World!") //--> </script> <noscript>Your browser does not support JavaScript!</noscript> </body> </html>
效果:
Atas ialah kandungan terperinci html noscript标签怎么用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!