Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/77.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 锚定标记在弹出div中工作不正常_Jquery_Html_Asp.net - Fatal编程技术网

Jquery 锚定标记在弹出div中工作不正常

Jquery 锚定标记在弹出div中工作不正常,jquery,html,asp.net,Jquery,Html,Asp.net,我有一个弹出的div 点击任何一个产品(比如edumanager),就会出现一个带有产品详细信息的弹出窗口。问题是弹出div上的链接不起作用(就像访问网站的链接一样),这意味着它不会在给定的链接上重定向我们。 请帮帮我。 以下是代码: http://182.50.154.23/elweb/Products.aspx 直肠镜 体育课 ProctorEye是下一代在线测试平台。它可以实现proctor和远程考生之间的交互,提供令人惊叹的视频会议设施,使用无法交付的带宽等,是帮助人们提高就业能力

我有一个弹出的div 点击任何一个产品(比如edumanager),就会出现一个带有产品详细信息的弹出窗口。问题是弹出div上的链接不起作用(就像访问网站的链接一样),这意味着它不会在给定的链接上重定向我们。 请帮帮我。 以下是代码:

http://182.50.154.23/elweb/Products.aspx

直肠镜
体育课

ProctorEye是下一代在线测试平台。它可以实现proctor和远程考生之间的交互,提供令人惊叹的视频会议设施,使用无法交付的带宽等,是帮助人们提高就业能力、技能设置和自适应学习的最佳平台。ProctorEye将提供从任何测试设施到实时监控、协作到行为分析的支持。敬请期待!!


看来锚定标记的默认行为已被阻止,所以您可以尝试将此代码放在页脚区域:

<section id="Section2" class="ps-container">

            <div class="ps-header">
                <h1><img class="PopUpLogo" src="Images/ProductLogo/ProctorEye.png" /></h1>
            </div>
            <div class="ps-contentwrapper">
                <div class="ps-content">
                    <h2>ProctorEye</h2>
                    <span class="ps-price">PE</span>
                    <p>
                    ProctorEye is the next generation online testing platform. It enables interaction between proctor and remote test taker, provide amazing video conferencing facilities, works on unbelivable bandwidth etc Envisioned to be the best platform helping out people tp increase their employability, skills set and self paced adaptive learning. ProctorEye will provide support right from any test facility to real-time proctoring to collaboration to behavioral Anayltics. Stay Tuned!!
                    </p>
                    <a target="_blank" href="http://www.showmymarks.com">Visit Website</a>
                </div>

            </div><!-- /ps-contentwrapper -->
            <div class="ps-slidewrapper">
                <div class="ps-slides">
                    <div style="background-image: url('Images/ProctorEyeThumb.png'); background-size: 100% auto; background-position: 0px 98px;"></div>
                </div>
                    <div class="ProductsLink">
                        <a href="default.aspx">
                                <div  class="ProductLinkBox ProductVideo">
                                    <h3>Watch Video</h3>
                                </div>
                        </a>
                        <a href="default.aspx">
                                <div  class="ProductLinkBox ProductPpt">
                                    <h3>View Ppt</h3>
                                </div>
                        </a>
                        <a href="default.aspx">
                                <div class="ProductLinkBox ProductNote">
                                    <h3>Product Note</h3>
                                </div>
                        </a>
                        <a href="default.aspx">
                                <div  class="ProductLinkBox ProductGuide">
                                    <h3>User Guide</h3>
                                </div>
                        </a>
                    </div>


            </div><!-- /ps-slidewrapper -->

        </section>

请在此处发布相关代码,但您确定它们是链接吗?我的意思是,我有时会遇到带有悬停效果的跨距,它们看起来像链接,但实际上不是。检查是否有返回值为false的单击事件影响弹出窗口中的所有锚点哪个链接不起作用?那个?
$('.ps-container a').click(function(){
    return true;
});