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

javascript - How to check if text is highlighted (cross-browser) - Stack Overflow

programmeradmin4浏览0评论

Is there a generic way in jQuery or JavaScript (most cross-browser patible) to check if text has been highlighted?

I am working with an HTML <input type='text'> element. This is a Search box that allows specific formats while searching for a Project.

A user can input the following:

  1. Project name, location, description, and other alpha numeric input
  2. Project Number (all numeric)

On keydown I am filtering for various search formats. As it currently stands, if there are 10 characters entered, and they are all numeric, the input textbox will only allow for more characters to be entered if they are non-numeric. The reason for this is, our project numbers are 10 digits long, and in the case that a user is searching for a project number, we want to capture only the first 10 characters and ignore the rest.

My goal is to allow for users to find a project by project number, highlight the text they just entered, and then search for another project by it's project number (replacing the existing search text). However, because we are filtering for non-numeric input, the numbers aren't captured.

Here is how I am filtering for non-numerics:

if ($input.val().length == 10 && !isNaN($input.val().replace(' ', '#'))) {
  if ((e.which >= 48 && e.which <= 57) || (e.which >= 96 && e.which <= 105)) {
    return false;
  }
}

How can I modify this to ensure that if my text is highlighted, the input will allow for numeric input to replace the existing query?

Is there a generic way in jQuery or JavaScript (most cross-browser patible) to check if text has been highlighted?

I am working with an HTML <input type='text'> element. This is a Search box that allows specific formats while searching for a Project.

A user can input the following:

  1. Project name, location, description, and other alpha numeric input
  2. Project Number (all numeric)

On keydown I am filtering for various search formats. As it currently stands, if there are 10 characters entered, and they are all numeric, the input textbox will only allow for more characters to be entered if they are non-numeric. The reason for this is, our project numbers are 10 digits long, and in the case that a user is searching for a project number, we want to capture only the first 10 characters and ignore the rest.

My goal is to allow for users to find a project by project number, highlight the text they just entered, and then search for another project by it's project number (replacing the existing search text). However, because we are filtering for non-numeric input, the numbers aren't captured.

Here is how I am filtering for non-numerics:

if ($input.val().length == 10 && !isNaN($input.val().replace(' ', '#'))) {
  if ((e.which >= 48 && e.which <= 57) || (e.which >= 96 && e.which <= 105)) {
    return false;
  }
}

How can I modify this to ensure that if my text is highlighted, the input will allow for numeric input to replace the existing query?

Share Improve this question edited Jun 20, 2014 at 20:28 Joe asked Jun 20, 2014 at 15:59 JoeJoe 8172 gold badges12 silver badges23 bronze badges 1
  • See also stackoverflow./q/9065828/1066234 – Avatar Commented Feb 2, 2022 at 5:01
Add a ment  | 

2 Answers 2

Reset to default 8

You can use the Selection object :

var selection = window.getSelection();

See the documentation here : https://developer.mozilla/en-US/docs/Web/API/Selection

With this object, you can check the selected dom node (anchorNode). For example :

if ($(window.getSelection().anchorNode).attr('id') === 'something') { ... }

Based on the above answer, here's the vanilla version.

document.addEventListener('click', function(){
    if (window.getSelection().anchorNode.parentElement.classList.contains('word')) {
    console.log('highlight');
    }
});

I would change 'document' to the wrapping container and 'word' to whatever class/ID is on the text you want to detect a highlight on.

发布评论

评论列表(0)

  1. 暂无评论