0
所以我有3個選擇選項框。我想在第三個頁面上隱藏第三個頁面。出於某種原因,我的代碼無法正常工作。我究竟做錯了什麼?在特定頁面上隱藏div
HTML:
<div class="form-group">
<label class="col-md-4 control-label">First:</label>
<div class="col-md-8">
<select id="first" class="form-control">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
</div>
</div>
<div class="form-group">
<label class="col-md-4 control-label">Second:</label>
<div class="col-md-8">
<select id="second" class="form-control">
<option>4</option>
<option>5</option>
<option>6</option>
</select>
</div>
</div>
<div class="form-group">
<label id="thirdid" class="col-md-4 control-label">Third:</label>
<div class="col-md-8">
<select id="third" class="form-control">
<option>7</option>
<option>8</option>
<option>9</option>
</select>
</div>
腳本:
if (top.location.pathname === '/ajax/test/yes.html')
{
$("#third").hide();
$("#thirdid").hide();
}
是不是要去了'if'循環內? –
你確定它輸入了oncidtion – phadaphunk
在附註中,你可以優化你的代碼爲'$(「#thirdid,#third」)。hide();'。你不需要單獨編寫它們。 –