欢迎访问服务器技术网-www.fuwuqijishu.com

Style quotes 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 92次浏览 0个评论 扫描二维码
文章目录[隐藏]

Style quotes 属性

Style 对象


定义和用法

quotes 属性设置或返回嵌入引用的引号类型。

语法

设置 quotes 属性:

Object.style.quotes=”none|string string string string|inherit”

返回 quotes 属性:

Object.style.quotes

描述
none 默认。规定 “content” 属性的 “open-quote” 和 “close-quote” 的值不会产生任何引号。
string string string string 规定要使用的引号。前两个值规定第一级引用嵌套,后两个值规定下一级引号嵌套。
inherit quotes 属性的值从父元素继承。


浏览器支持

所有主要浏览器都支持 quotes 属性,除了 Internet Explorer 和 Safari。


实例

实例

更改引号:

<!DOCTYPE html>
<html>
<head>
<meta charset=”utf-8″>
<title>菜鸟教程(runoob.com)</title>
<script>
function displayResult(){
    document.getElementById(“q1″).style.quotes=”‘<‘ ‘>’ ‘[start]’ ‘[end]'”;
}
</script>
</head>
<body>

<q id=”q1″>这是一个<q>引号元素</q> 在其他的引号元素内。</q>
<br>
<button type=”button” onclick=”displayResult()”>修改引号标记</button>
<p><b>注意:</b> 这个例子在IE和Safari不工作。</p>

</body>
</html>


Style 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2119.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900