我正在尝试在将放置在酒店网站标题中的图像上插入预订表单。 我正在使用Sirvoy。他们给了我一个javascript代码粘贴到我的网站。 http://hotelporhe.com/index.php/es/ 我想将表单放在标题中,放在主图像上。
到目前为止我的代码:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>
<body>
<table height="763" width="1424"
background="http://hotelporhe.com/images/pruebaSlider3.jpg">
<script async type="text/javascript" data-form-id="5671e222201aa" src="https://secured.sirvoy.com/widget/sirvoy.js"></script>>
<tr>
<td>Reserva hoy</td>
</tr>
</table>
</body>
</html>
这是我从Sirvoy获得的具体代码:
<script async type="text/javascript" data-form-id="5671e222201aa" src="https://secured.sirvoy.com/widget/sirvoy.js"></script>>
图片有效但我无法在我的图片上调用预订表单。
我希望有人可以帮助我。
感谢。
答案 0 :(得分:0)
你的HTML搞砸了,这就是它无法正常工作的原因。试试这个:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Untitled Document</title>
</head>
<body>
<table height="763" width="1424"
background="http://hotelporhe.com/images/pruebaSlider3.jpg">
<tr><td>
<script async type="text/javascript" data-form-id="5671e222201aa" src="https://secured.sirvoy.com/widget/sirvoy.js"></script>
</td></tr>
</table>
</body>
</html>