0
我知道這很簡單,但我不能得到它的工作我有一個彈出窗口,我想目標並將容器設置爲全屏。我能夠使用目標的所有彈出窗口:目標彈出容器
.ui-popup-container{
left:0px !important;
width:100%;
height:100%
}
但我只想針對特定的彈出和嘗試:
#complete_pge_faultPop .ui-popup-container{
left:0px !important;
width:100%;
高度:100% }
有針對性的彈出HTML :
<div data-role="popup" name="faultPop" dsid="faultPop" id="complete_pge_faultPop"
class="faultlist" data-corners="false" data-dismissible="false" data-overlay-theme="d"
data-theme="b" data-shadow="false" data-tolerance="4,4,4,4">
<div class="ui-popup-content-wrapper">
<!-- faultPop_grd -->
<div class="complete_pge_faultPop_grd_wrapper" data-wrapper-for="faultPop_grd">
<table id="complete_pge_faultPop_grd" class="complete_pge_faultPop_grd" dsid="faultPop_grd"
name="faultPop_grd" cellpadding=0 cellspacing=0>
<col style="width:100%;" />
<tr class="complete_pge_faultPop_grd_row_0">
<!-- mobilegridcell_87 -->
<td id="complete_pge_mobilegridcell_87" name="mobilegridcell_87" class="complete_pge_mobilegridcell_87"
colspan=1 rowspan=1>
<div class="cell-wrapper">
<!-- html_91 -->
<div data-role="appery_html" name="html_91" dsid="html_91" id="complete_pge_html_91"
>
<div style='width:100%;height:100%;padding-top:5;align:center'>
<fieldset data-role="controlgroup" data-mini="false" id="myGroup" style='padding:15px;'>
<legend>
Load Problem:
</legend>
<input id="radio-choice-1" type="radio" name="radio-choice" value="choice-1" data-theme="a"
style='padding:15px;' />
<label for="radio-choice-1" data-theme="a">
Damaged Pallet
</label>
<input id="radio-choice-2" type="radio" name="radio-choice" value="choice-2" data-theme="a"
/>
<label for="radio-choice-2" data-theme="a">
Damaged Package
</label>
<input id="radio-choice-3" type="radio" name="radio-choice" value="choice-3" data-theme="a"
/>
<label for="radio-choice-3">
Missing Goods
</label>
<input id="radio-choice-4" type="radio" name="radio-choice" value="choice-4" data-theme="a"
/>
<label for="radio-choice-4">
Damaged Goods
</label>
<input id="radio-choice-5" type="radio" name="radio-choice" value="choice-5" data-theme="a"
/>
<label for="radio-choice-5">
Other
</label>
</fieldset>
<label for="textarea-a" style='align:center;padding-left:10px;word-wrap:wrap;'>
Notes:
</label>
<textarea id="textarea-a" name="textarea" style='padding:5px;' placeholder='Add notes here these will appear on the customer paperwork.'></textarea>
<table style="height: 40px; width: 100%;" border="0" cellpadding="2"
align="center">
<tbody>
<tr>
<td>
<button id="cancelbtn" data-theme="a" class="complete_pge_mobilebutton_79 ui-link ui-btn ui-btn-b ui-icon-back ui-btn-icon-right ui-btn-inline ui-shadow ui-corner-all ui-mini"
data-corners="true" data-icon="back" data-iconpos="right" x-apple-data-detectors="false"
data-inline="true" data-mini="true" data-theme="b" tabindex="17">
Cancel
</button>
</td>
<td>
<button id="faultSubbtn" data-theme="a" data-icon="back" class="complete_pge_mobilebutton_79 ui-link ui-btn ui-btn-b ui-icon-back ui-btn-icon-right ui-btn-inline ui-shadow ui-corner-all ui-mini"
data-corners="true" data-iconpos="right" x-apple-data-detectors="false" data-inline="true"
data-mini="true" tabindex="17">
Submit
</button>
</td>
</tr>
</tbody>
</table>
</div>
如何定位彈出窗口?
感謝您的建議,我一直無法達到預期的效果,我認爲Jquery移動包裝可能與此有關。我會重新思考這個方法。
哪裏是帶班UI的彈出式容器中的元素? –
看起來像它的jquery mobile,'ui-popup-container'是你的popup元素的父類,所以你不能像你想要的那樣定位它。你可以使用#id選擇器嗎? – ertrzyiks