我有代码html
<button onclick=location=URL>Refresh</button>
代码是如何被赋予css颜色?2例如
CSS代码'
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 8px 8px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.button2 {background-color: #008CBA;} /* Blue */
'在html中
<button class="button button2">Refresh</button>
但如果在此代码中实现,
<button onclick=location=URL>Refresh</button>
发生错误
有谁能帮我一下吗?
4条答案
按热度按时间llmtgqce1#
omtl5h9j2#
onclick已经过时并且很难阅读。请考虑对您的按钮使用侦听器!
刷新页面的代码为
window.location.reload();
nx7onnlm3#
你必须改变两件事:
"
周围的javascript。喜欢class="button"
.如下所示:**或者,**您可以使用其他思考方式:使用
button{ ... }
代替.button{ ... }
。t9aqgxwy4#
我看不出您是如何使用
onclick
的。但这里有问题:括号不见了。也许可以试试类似的东西