【发布时间】:2011-04-15 01:48:25
【问题描述】:
我想通过单击选择文本后出现的按钮来修改选定的文本。 在第一次迭代它工作正常 - 文本根据需要被替换。 在第二次迭代中,文本似乎是前一次迭代留下的(模式没有更新),没有任何效果。 你能帮忙修复它吗?演示如下。
我尝试使用live('click', function ...) 而不是click() 来根据此处的一些线程更新模式,但它似乎不起作用。
编辑:
决定包含整个演示,以便更清晰:
<html>
<head>
<title>Border revision</title>
</head>
<body>
<BR />
<h2>Select text in the red square and then click ? button. First time work, second not. Why? </h2>
<div>
some text <span style="border: solid 2px red" class="VAL">try it</span> some text
second attempt <span style="border: solid 2px red" class="VAL">3</span> doesn't work ;(
<hr><br>
</div>
<hr></br>
<div id="selection-image"></div>
<style type="text/css">
#show-bubb { background:url(bubble.png) 0 0 no-repeat; width:25px; height:29px; position:absolute; top:-50px; left:-50px; }
</style>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" ></script>
<script>
function getSelected() {
if(window.getSelection) { return window.getSelection(); }
else if(document.getSelection) { return document.getSelection(); }
else {
var selection = document.selection.createRange();
if(selection.text) { return selection.text; }
return false;
}
return false;
}
function processing() {
var selectionImage;
$(document).mouseup(function(e) {
var selection = getSelected();
var parent = selection.anchorNode.parentNode;
if(selection && (selection = new String(selection).replace(/^\s+|\s+$/g,''))) {
if(!selectionImage) {
selectionImage = $('<label>').attr({
//~ href: url,
title: 'Click here to remove border',
//~ target: '_blank',
id: 'show-bubb'
}).hide();
$(document.body).append(selectionImage);
}
selectionImage.css({
top: e.pageY - 30, //offsets
left: e.pageX - 13 //offsets
}).fadeIn();
selectionImage.click(function() {
//parent = selection.anchorNode.parentNode;
if (parent == null) {
//alert(ZOZO);
return "";
}
else {
//create a string selected
var text = document.createTextNode(String(selection));
//~ alert("before");
//alert(String(selection));
parent.parentNode.insertBefore(text, parent.nextSibling);
parent.parentNode.removeChild(parent);
//~ alert("after");
}
});
};
});
$(document.body).mousedown(function() {
if(selectionImage) { selectionImage.fadeOut(); }
});
};
$(document).ready(function() {
processing();
});
</script>
有什么想法吗?
【问题讨论】:
标签: javascript jquery javascript-events event-handling