HTML反馈表单超链接看起来应该可以工作但不会

时间:2014-06-19 11:06:49

标签: html forms hyperlink

只是为自己建立一个网站,真的不能说好的代码,我为新的道歉,但是嘿..这就是为什么我在这里。

为什么这个反馈不形成超链接?在页面上它看起来像一个链接,但我无法点击它,它根本无法打开..

<link rel='stylesheet' type='text/css' href='index_htm_files/style/jquery-ui-1.8.16.css'/>
<script src='index_htm_files/scripts/jquery-1.7.2.min.js' type='text/javascript'></script>
<script src='index_htm_files/scripts/jquery-ui-1.8.18.custom.min.js' type='text/javascript'></script>
<script src='index_htm_files/scripts/jquery.sim.utils.js' type='text/javascript'></script>
<script type='text/javascript'>
// <![CDATA[
$(function()
{
   $('a.sfm_feedbackform_link').click(function(){ sfm_popup_form('index_htm_files/feedbackform.php?

sfm_from_iframe=1',400,500,{title:"feedbackform"}); });
});

// ]]>
</script>
<a class='sfm_feedbackform_link' href='javascript:void(0);'>Open the feedback form</a>

1 个答案:

答案 0 :(得分:0)

您不能在JS字符串中包含行尾字符。试试这个:

$(function()
{
    $('a.sfm_feedbackform_link').click(function() {
        sfm_popup_form('index_htm_files/feedbackform.php?sfm_from_iframe=1',
            400, 500, { title: "feedbackform" });
    });
});