设置按钮的尺寸

问题描述 投票:1回答:1

我正在尝试设置按钮尺寸,但尺寸仅针对活动区域设置,但不会被ui反映。

添加

<input type="button" value="Input Button" id="b1" style="height:100px">

会产生

<div data-corners="true" data-shadow="true" data-iconshadow="true" data-wrapperels="span" data-theme="c" data-disabled="false" class="ui-btn ui-shadow ui-btn-corner-all ui-btn-up-c" aria-disabled="false">
  <span class="ui-btn-inner">
    <span class="ui-btn-text">Input Button</span>
  </span>
  <input type="button" value="Input Button" id="b1" style="height:100px" class="ui-btn-hidden" data-disabled="false">
</div>

以下代码将正确地在div中单击后设置按钮的尺寸

$(document).ready(function()
{
  $("div").click(function(){
    $("#b1").parent().css('height',100);
  });
});

但直接在就绪功能中调用它是行不通的

$(document).ready(function()
{
  $("#b1").parent().css('height',100);
});

在我看来,当在就绪函数中设置高度时,尚未创建按钮的父div。

编辑确认

$(document).ready(function()
{

  $("#b1").click(function(){
    alert($("#b1").parent().prop('id'));
  });

  alert($("#b1").parent().prop('id'));
});

这将显示在执行文档就绪功能时,尚未创建按钮的父div。

jquery jquery-ui jquery-mobile
1个回答
2
投票

您的问题是您正在使用jQuery Mobile并将其视为常见的jQuery应用程序。

您不应该将文档就绪事件与jQuery Mobile一起使用,因为jQM将在触发文档就绪后触发代码标记增强,从而使CSS更改无效。

您需要学习使用jQuery Mobile页面事件:https://api.jquerymobile.com/category/events/

您需要做的是用pagecreate事件替换文档准备:

$( document ).on( "pagecreate", "#yourPageID", function( event ) {
  alert( "This page was just enhanced by jQuery Mobile!" );
});

在这里阅读更多关于这个问题:jQuery Mobile: document ready vs. page events

© www.soinside.com 2019 - 2024. All rights reserved.