将javascript链接转换为href

时间:2015-04-16 04:58:08

标签: javascript onclick

我想将此提交按钮转换为href链接。表单不是html表单,而是JavaScript。按钮代码目前是:

<input type="submit" value="Name" onclick="Offer();">

如何将其转换为href链接。

我已经尝试onclick="document.Offer();",但它无法正常工作

2 个答案:

答案 0 :(得分:0)

像这样,

<a href="www.mysite.com" onclick="return theFunction();">Name</a>

<script type="text/javascript">
    function theFunction () {
        // return true or false, depending on whether you want to allow the `href` property to follow through or not
    }
</script>

答案 1 :(得分:0)

如果可以请提供您的代码,以便更容易理解您的要求。

此帖有stack overflow帖子。