html noscript标签是什么意思?关于noscript标签的用法你了解多少?


本文摘自PHP中文网,作者寻∝梦,侵删。

<noscript>标签,一个被忽略的重要标签,html noscript标签的定义和具体的用法你知道多少,noscript标签是做什么用的?本篇文章就来告诉你,html noscript标签的定义和具体用法的实例。

让我们一起看下去吧

html noscript标签的定义和用法:

noscript 元素用来定义在脚本未被执行时的替代内容(文本)。

此标签可被用于可识别 <script> 标签但无法支持其中的脚本的浏览器。

HTML <noscript> 标签例子:

JavaScript

1

2

3

4

5

6

7

8

9

10

11

12

<body>

  ...

  ...

  <script type="text/javascript">

    <!--

    document.write("Hello World!")

    //-->

  </script>

    <noscript>Your browser does not support JavaScript!</noscript>

  ...

  ...

</body>

VBScript

1

2

3

4

5

6

7

8

9

10

11

12

<body>

  ...

  ...

  <script type="text/vbscript">

   <!--

   document.write("Hello World!")

   '-->

  </script>

  <noscript>Your browser does not support VBScript!</noscript>

  ...

  ...

</body>

html noscript标签的含义和解释:

阅读剩余部分

相关阅读 >>

如何处理html中的换行字符“?”

html文档的基本结构由哪三对标签负责组织

html css怎么设置字体大小

html怎么插入flash

html中id属性和name属性的区别是什么

svg和css3实现环形渐变进度条的代码示例

html如何设置禁止选中

html 图像标记 meta标签 内联框架 超链接

html的基本结构有哪些

html header标签怎么用

更多相关阅读请进入《noscript》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...