0

我在使用 JS 链接时遇到问题。

我有以下代码:

window.addEvent('domready', function() {
    $('province_aw').addEvent('change', function() {

        var index = this.options[this.selectedIndex].value;
        var b = document.getElementById("choice_2").value;

        var link  = "index.php?option=com_chronoforms&chronoform=listSpecific-3&id_province="+index+"&id_ch="+b;
        document.getElementById('link1').href = "index.php?option=com_chronoforms&chronoform=listSpecific-3&id_province="+index+"&id_ch="+b;
    });
});

使用此链接:

<a class="jcepopup" id="link1" href="" rel="{handler:'iframe'}"> <input type='button' name='prueba' id='prueba' value='...' /> </a>

该代码实际上正在更改 < a > 标签的链接,但是,当我单击该按钮时,什么也没有发生,它一直将我发送到原始 href(即主页)。

4

1 回答 1

0

你应该使用 href="javascript:void(0);"

于 2013-07-10T18:23:47.507 回答