开发者

How to select elements within a variable using jQuery?

开发者 https://www.devze.com 2023-01-14 17:17 出处:网络
I\'m trying to make a simple image browser for TinyMCE which I am using in my CMS. As part of this I need to detect whether the user has selected an existing image, so I can display the \"edit\" form

I'm trying to make a simple image browser for TinyMCE which I am using in my CMS. As part of this I need to detect whether the user has selected an existing image, so I can display the "edit" form instead of the "choose an image form".

var selected_html = ed.selection.getContent();
var $elem = $(selected_html);
console.log($elem);

The first function returns the user selected text from the editor window as a string of HTML. I then would like to use jQuery (although plain javascript is just ok too) to check if this string contains an img tag before subsequently grabbing the src and title attri开发者_运维知识库butes for editing.

Now I've got as far as getting the html to turn into an object. But after this I can't manage to search it for the img element. After reading this (How to manipulate HTML within a jQuery variable?) I tried:

$elem.find('img');

But it just comes out as an "undefined" object...

I think I'm missing something fairly obvious here (it is getting late), but after an hour I still can't figure out how to grab the img tag from the selection. :(

Many thanks in advance.


Because the <img> is at the root of the jQuery object, you need to use .filter() instead of .find().

$elem.filter('img');

The .filter() method looks at the element(s) at the top level of the jQuery object, while .find() looks for elements nested in any of the top level elements.

If you're not sure beforehand where the target element will be, you could place the HTML into a wrapper <div> to search from. That way the HTML given will never be at the top.

var selected_html = ed.selection.getContent();
var $elem = $('<div>').html(selected_html);

var $img = $elem.find('img');


Try to see what is really inside your $elem variable. Just do a console.log($elem) using both Firefox and Firebug and you should be able to manage quite alright! ;)

0

精彩评论

暂无评论...
验证码 换一张
取 消