ActionScript 3 更改HTML背景颜色
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 更改HTML背景颜色相关的知识,希望对你有一定的参考价值。
import flash.external.*;
btn.addEventListener(MouseEvent.CLICK, function() {
var jsCall:String;
jsCall = String(ExternalInterface.call("changeBgColor", "#fffecb"));
trace("Click")
});
//And in the HTML code
<script language="JavaScript">
function changeBgColor(newBgColor)
{
if (window.document && window.document.bgColor)
{
document.bgColor = newBgColor;
}
}
</script>
以上是关于ActionScript 3 更改HTML背景颜色的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 颜色Const:灰色,html颜色,svg颜色
在 ionic 3 中动态更改背景颜色
如何在iOS上更改UISearchBar组件的内部背景颜色
如何更改动作脚本中文本区域的颜色?
在悬停时更改选择列表选项背景颜色
如何更改 HTML 页面的背景颜色以进行打印?