我的按钮有什么问题,链接不起作用?

时间:2016-06-02 15:03:19

标签: javascript html button

工作得很好,但后来......好吧......我不知道我做了什么......

<form>
<span style="font-family:arial,helvetica,sans-serif;
font-size:24px;font-weight:bold;">
   <input onclick="window.location.href='
     https://trehebe.blogspot.gr/p/online-paraggelia.html'
     target:_blank" style="background:rgb(153, 0, 255); border-radius:20px; 
     border:1px solid rgb(217, 217, 217); 
     box-shadow:rgb (153, 153, 153) 6px 6px 5px; color:#ffffff;
     cursor:pointer; font-weight:bold; padding:10px; width:100px;" 
     type="button" value="Order" />
</span>
</form>

1 个答案:

答案 0 :(得分:2)

请使用:

onclick="window.location.href='https://trehebe.blogspot.gr/p/online-paraggelia.html';" target="_blank"

编辑:

作为完整的代码:

<form><span style="font-family:arial,helvetica,sans-serif; font-size:24px;  font-weight:bold;"><input onclick="window.location.href='https://trehebe.blogspot.gr/p/online-paraggelia.html;'" target="_blank" style="background:rgb(153, 0, 255); border-radius:20px; border:1px solid rgb(217, 217, 217); box-shadow:rgb (153, 153, 153) 6px 6px 5px; color:#ffffff; cursor:pointer; font-weight:bold; padding:10px; width:100px;" type="button" value="Order" /></span></form>

另一个编辑(解释):

错误是onclick属性OP没有用双引号正确关闭它。所以我只是添加了一个分号和一个双引号来结束语句。

target属性格式不正确,因为它原来是target:"_blank"。在HTML属性中,使用等号target="_blank"

要证明这是fiddle