最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Select - Option How to Pause browser to Inspect - Stack Overflow

programmeradmin1浏览0评论

I have a dropdown menu created by select - option.

<select>
  <option value=''>Select an option...</option>
  <option value=1>Option 1</option>
  <option value=2 selected=''>Option 2</option>
  <option value=3>Option 3</option>
  <option value=4>Option 4</option>
</select>

I have a dropdown menu created by select - option.

<select>
  <option value=''>Select an option...</option>
  <option value=1>Option 1</option>
  <option value=2 selected=''>Option 2</option>
  <option value=3>Option 3</option>
  <option value=4>Option 4</option>
</select>

I need to inspect this dropdown menu to do some customer style. I could pause Chrome by below code, but when I move the mouse, the dropdown menu disappears away!

I wonder if there are some ways to pause the screen then inspect the select-option dropdown menu.

setTimeout(function(){debugger;}, 5000)
Share Improve this question edited Oct 23, 2024 at 14:39 j08691 208k32 gold badges269 silver badges280 bronze badges asked Feb 7, 2018 at 22:36 abcid dabcid d 2,9638 gold badges36 silver badges52 bronze badges 1
  • I faced the same problem and this worked for me. – Priyansh Gaharana Commented Oct 21, 2020 at 2:17
Add a ment  | 

4 Answers 4

Reset to default 1

I am not exactly sure whether it is possible to keep the drop-down list open while debugging somehow. Maybe you are fine with this workaround:

var debugSelect = document.getElementById('debugSelect');

setTimeout(function() {
  debugSelect.size = debugSelect.length;
  debugSelect.multiple = true;
  debugger;
  debugSelect.multiple = false;
  debugSelect.size = 1;
}, 5000);
<select id="debugSelect">
  <option value="">Select an option...</option>
  <option value="1">Option 1</option>
  <option value="2" selected="selected">Option 2</option>
  <option value="3">Option 3</option>
  <option value="4">Option 4</option>
</select>

I believe you can't inspect the dropdown options, even when it's open, you can only inspect the select.

To access inspect mode while the dropdown box is open. Open the Dev Tools, click the dropdown and then use the shortcut to get to inspect mode (Ctrl+Shift+C for chrome).

I believe you can find the solution here

summary: just inspect the parent element and remove the 'blur' and 'mouseout' event listeners

Right Click on the dropdown and select inspect element press CTRL+SHIFT+p type focus select emulate a focussed page click on the drop down and click on the specific elements to inspect which disappear when tried to inspect earlier

Hope this helps

发布评论

评论列表(0)

  1. 暂无评论