English 中文(简体)
将案文与可选择的可选择性联系起来
原标题:Making text in a linked div selectable

我正在设立一个网页,并有一个部分,我想在本节中链接起来,尽管我有一些案文希望让用户能够复制和过去(即他们需要能够强调这一点)。 由于案文虽然我无法选择文本,但却属于相关部分,我如何能够选择案文?

在这方面,我有......。

<a href="http://google.com">
    <div class="container"> 
        <h2>Heading</h2>
        <p class="selectable-text">Text that can be highlighted here</p>
        <p>Other Text</p>
    </div>
</a>

我曾尝试在国家安全局这样做,但这只是改变了 cur子,实际上没有使案文可以选择。

.selectable-text{
    cursor:text;
}

事先得到任何帮助。

最佳回答

a- 部件不容许在其内进行阻塞。 因此,你不能以这种方式安排你们的布局。 哪怕只是把标题联系起来? 这将是罚款,你可以很容易地选择其他案文:

<div class="container"> 
    <h2><a href="http://example.com">Heading</a></h2>
    <p>Text that can be highlighted here</p>
    <p>Other Text</p>
</div>

为使整个集装箱被点击,你可以向所有集装箱申请 Java印事件清单。 如果你已经使用 j,可以很容易地这样做:

$( .container ).each(function(){
    $(this).on( click , function(){
        location.href = $(this).find( a ).attr( href );
    });
}).addClass( link );

从这种联系到“真实”联系的区别在于,它赢得的塔价是可分割的,可以选择。 你可以点击它,并将把你定位到你想要去的地方。 该表还将使用一个类别<代码>。

对于那些已经残疾的人来说,标题中仍然有链接,因此,你的网页在任何情况下都是有用的。

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签