gpt4 book ai didi

javascript - 按钮形式不可点击,一旦放置在 div 中

转载 作者:行者123 更新时间:2023-11-30 13:37:37 25 4
gpt4 key购买 nike

我有一个按钮,它的 onClick 应该引用一个 JavaScript 函数,但是当我把这个按钮放在一个 div 中时,它就变得不可点击了。我正在使用 Firefox,这可能是问题所在吗?

这是我的 CSS 代码:

#fullscreen {
background-color: #222222;
font-color: #FFFFFF;
display: block;
position:absolute;
left: 0px;
right: 0px;
width:100%;
height:100%;
border-style: none;
border-width: 0px;
border-color: #FFFFFF;
z-index: -2;
}

和 HTML/JS 代码:

<script type="text/javascript">
function adjust() {
var bg_img = document.getElementById('bg_img_img');
var percent = bg_img.height/(screen.height/2);
bg_img.width = bg_img.width/percent;
bg_img.height = screen.height/2;
var bg_img_div = document.getElementById('bg_img_div');
bg_img_div.left = -(bg_img.width/2);
document.write(bg_img_div.left);
}
<script type="text/javascript">
function fade_top() {
var top_bg = getElementById('fullscreen');
top_bg.background-color = "#FFFFFF";
}
</script>

</head>

<body >
<div id="fullscreen">

<form>
<input type="button" value="Hello world!" onclick="fade_top();">
</form>

</div>
</body>

提前致谢!

萨米

最佳答案

<script type="text/javascript">function adjust() {    var bg_img = document.getElementById("bg_img_img");    var percent = bg_img.height / (screen.height/2);    bg_img.width = bg_img.width / percent;    bg_img.height = screen.height / 2;    var bg_img_div = document.getElementById("bg_img_div");    bg_img_div.left = -(bg_img.width/2);    document.write(bg_img_div.left);} function fade_top() {    var top_bg = document.getElementById("fullscreen");    top_bg.style.backgroundColor = "#FFFFFF";}</script>

如果 fade_top() 函数无效,则无法调用/运行 :) 试试上面的方法!

关于javascript - 按钮形式不可点击,一旦放置在 div 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4074165/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com