6

我试图在单击时创建一个 div contentEditable,然后在鼠标移出时将 contentEditable 设置为 false,但到目前为止我还没有成功。单击链接似乎会突出显示它,但除此之外什么都不做:

http://jsfiddle.net/GeVpe/19/

<div id="content" contentEditable="true" onclick = "this.contentEditable = true;" onmouseout = "this.contentEditable = false;">
    Surprisingly, <a href="http://google.com">clicking this link does nothing at all.</a> How can I fix this problem?
</div>

我希望链接在单击时将我带到链接的页面,但相反,它在单击时突出显示并且没有做任何其他事情。我该如何解决这个问题?

4

3 回答 3

4

永远不要使用内联 html 脚本声明,这是一种不好的做法。我认为你的链接没有做任何事情的原因是,当你为你的 div 设置它时,事件监听器在它上面冒泡/传播并改变了它的默认 onclick 事件。

我建议你做这样的事情。

        window.onload = function() {
            var div = document.getElementById('editable');
            div.onclick = function(e) {
                this.contentEditable = true;
                this.focus();
                this.style.backgroundColor = '#E0E0E0';
                this.style.border = '1px dotted black';
            }

            div.onmouseout = function() {
                this.style.backgroundColor = '#ffffff';
                this.style.border = '';
                this.contentEditable = false;
            }
        }

        // And for HTML

        <div id="content">
            <span id='editable'>Surprisingly,</span>
            <a href="http://google.com">clicking this link does nothing at all.</a>
        </div>
于 2013-04-13T22:00:40.987 回答
1

在这里,我们可以使用此代码使 html 元素可编辑真假。

    $( "#mylabel" ).click(function() {
// we get current value of html element
        var value = $('#editablediv').attr('contenteditable');
//if its false then it make editable true
    if (value == 'false') {
        $('#editablediv').attr('contenteditable','true');
    }
    else {
//if its true then it make editable false
        $('#editablediv').attr('contenteditable','false');
    }
    });
于 2016-12-16T07:16:10.830 回答
0

尝试将目标设置为blank

<div id="content" contentEditable="true" onclick = "this.contentEditable = true;" onmouseout = "this.contentEditable = false;">
    Surprisingly, <a href="http://google.com" target = "blank">clicking this link does nothing at all.</a> How can I fix this problem?
</div>
于 2013-04-14T00:25:25.707 回答