如何设置属性使得button没有边框?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何设置属性使得button没有边框?相关的知识,希望对你有一定的参考价值。
参考技术A 最好能贴下代码。既然在test.mxml中有效,问题还是比较容易发现的。
你可以试着按以下方法查找原因。
1、你的CSS是全局的么?如果不是引用路径对么?
2、你的Do.mxml中对Grid的设置中是否设置了border属性,按优先级来看,Grid标签属性设置的优先级最高。
3、比较test.mxml和Do.mxml中的代码有什么不同,或者做两个测试的表单,只用Grid标签,来对test和Do表单中的设置进行测试。
4、目前问题出现在边框显示的问题上,简化Grid的属性设置,只保留与border相关的设置进行测试。可以结合(3)的步骤,这样查找就比较明确了!
以上个人开发经验,希望对你有所帮助! 参考技术B tyle="background-color: Transparent; border-style :none;" 参考技术C BorderStyle="None" BorderWidth="0" 参考技术D border-style :none; 第5个回答 2011-10-27 Style="background-color: Transparent; border-style :none;"
加分鼓励
如何使用JavaScript设置表单按钮(没有id)的title属性
我在<button>
里面有一个<form>
。该按钮没有id
属性,但表单有,我想使用JavaScript为按钮添加title
属性。
我尝试使用querySelector
,但我不能让它工作。代码如下:
<form id='largerView' action='#' method='get'>
<button>Large Version</button>
</form>
JavaScript的:
document.querySelector('#largerView>button').title = 'View the larger version of the image';
答案
此代码将title属性添加到在表单元素中显示为子项的第一个按钮。
var form = document.getElementById("largerView");
var button = form.getElementsByTagName("button")[0];
button.setAttribute("title", "TITLE");
此外,如果您想继续使用querySelector,您只需要用空格替换>。
document.querySelector('#largerView button').title = 'View the larger version of the image';
如果您需要进一步的帮助,请告诉我。干杯。
以上是关于如何设置属性使得button没有边框?的主要内容,如果未能解决你的问题,请参考以下文章