gpt4 book ai didi

jquery-mobile - 如何删除 jQuery Mobile 中的按钮样式?

转载 作者:行者123 更新时间:2023-12-04 17:58:29 30 4
gpt4 key购买 nike

我在 asp.net 中使用 jquery mobile。

在我的项目中,我想显示按钮文本。当我制作一个三列的网格时,按钮适合移动设备。但是按钮不显示移动设备垂直位置的文本。它显示在水平位置。

 <div id="body" class="ui-content ui-body-a" > <%----%>
<div class="ui-grid-b">
<div class="ui-block-a"><asp:Button ID="Button1" runat="server" Text="Button" /></div>
<div class="ui-block-b"> <asp:Button ID="Button2" runat="server" Text="Button" /></div>
<div class="ui-block-c"> <asp:Button ID="btnUp" runat="server" Text="UP" onclick="btnUp_Click" /></div>
<div class="ui-block-a"><asp:Button ID="Button3" runat="server" Text="Button" /></div>
<div class="ui-block-b"><asp:Button ID="Button4" runat="server" Text="Button" /></div>
<div class="ui-block-c"> <asp:Button ID="Button5" runat="server" Text="Button" /></div>
<div class="ui-block-a"><asp:Button ID="Button6" runat="server" Text="Button" /></div>
<div class="ui-block-b"><asp:Button ID="Button7" runat="server" Text="Button" /></div>
<div class="ui-block-c"> <asp:Button ID="Button8" runat="server" Text="Button" /></div>
<div class="ui-block-a"><asp:Button ID="Button9" runat="server" Text="Button" /></div>
<div class="ui-block-b"><asp:Button ID="Button10" runat="server" Text="Button" /></div>
<div class="ui-block-c"><asp:Button ID="btnDown" runat="server" Text="DOWN" onclick="btnDown_Click" /></div>
</div>
</div>

按钮如下所示。

 ________   ________   ________
(___B1___) (___B2___) (___B3___)

_____ _____ _____
(_____) (_____) (_____)

我正在使用

 <link href="Styles/jquery.mobile-1.0b3.css" rel="stylesheet" type="text/css" />

<script src="Scripts/jquery-ui-1.8.16.custom.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
<script src="Scripts/jquery.mobile-1.0b3.js" type="text/javascript"></script>

对于 jquery 移动版。

帮帮我。

更新问题 -

我不关心垂直和水平。在我的项目中,按钮文本不完全可见。这意味着,。请参阅下面的图片和代码,这是一个示例,.. 来自 here

在这里你看到图像中的箭头-l、箭头-r。它会显示一个... ,.. 和一个,.. 像这样。

同样,..我的项目也不显示这个字符,..

你明白我的问题了吗?

<!DOCTYPE html>
<html>
<head>
<meta name = "viewport" content = "width = device-width, height = device-height" />
<title>jQuery Mobile: Button Icon</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/latest/jquery.mobile.css" />
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
</head>
<body>

<div data-role="page" id="home">
<div data-role="header">
<h1>Grid Layout</h1>
</div>
<div data-role="content">
<div class="ui-grid-b">
<div class="ui-block-a">
<a data-role="button" data-icon="arrow-l" >arrow-l</a>
<a data-role="button" data-icon="arrow-r" >arrow-r</a>
<a data-role="button" data-icon="arrow-u" >arrow-u</a>
<a data-role="button" data-icon="arrow-d" >arrow-d</a>
<a data-role="button" data-icon="delete" >delete</a>
<a data-role="button" data-icon="plus" >plus</a>
</div>
<div class="ui-block-b">
<a data-role="button" data-icon="minus" >minus</a>
<a data-role="button" data-icon="check" >check</a>
<a data-role="button" data-icon="gear" >gear</a>
<a data-role="button" data-icon="refresh" >refresh</a>
<a data-role="button" data-icon="forward" >forward</a>
<a data-role="button" data-icon="back" >back</a>
</div>
<div class="ui-block-c">
<a data-role="button" data-icon="grid" >grid</a>
<a data-role="button" data-icon="star" >star</a>
<a data-role="button" data-icon="alert" >alert</a>
<a data-role="button" data-icon="info" >info</a>
<a data-role="button" data-icon="home" >home</a>
<a data-role="button" data-icon="search" >search</a>
</div>
</div>
</div>
<div data-role="footer">
<h4><a href="http://mobile-web-app.blogspot.com/">http://mobile-web-app.blogspot.com/</a></h4>
</div>

</div>

</body>
</html>

enter image description here

最佳答案

您可以减少这些按钮上的填充,或者使用

完全删除省略号
white-space: normal; 

CSS 规则。

关于jquery-mobile - 如何删除 jQuery Mobile 中的按钮样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9389627/

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