这段代码有问题,但我找不到错误。请帮助纠正这个。
document.write('
<div>
<a href=http://www.socialsignal.ir style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>سوشیال سیگنال</a>
<a href=http://www.seoro.ir style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>سئو</a>
<a href=http://hiappleid.com/ style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>خرید اپل ایدی</a>
<a href=http://zheek.ir/ style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>طراحی وب سایت</a>
<a href=http://yamonji.com/ style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>امام زمان</a>
<a href=http://deepenglish.ir/ style=\'\\padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;\'\\ target=\'\\_blank\'\\>یادگیری زبان انگلیسی</a>
</div>
');
答案 0 :(得分:1)
你的问题就在这里。 ''
中的字符串不支持mulitline,因此您需要连接代码中的每一行。
只需使用template literals并在不使用\
的情况下为特殊符号编写字符串。
document.write(`
<div>
<a href=http://www.socialsignal.ir style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>سوشیال سیگنال</a>
<a href=http://www.seoro.ir style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>سئو</a>
<a href=http://hiappleid.com/ style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>خرید اپل ایدی</a>
<a href=http://zheek.ir/ style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>طراحی وب سایت</a>
<a href=http://yamonji.com/ style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>امام زمان</a>
<a href=http://deepenglish.ir/ style='padding:5px;text-decoration: none;border: 1px solid #555;background-color:#eee;border-radius:5px;color: #000;display:-webkit-inline-box;z-index:50;' target='_blank'>یادگیری زبان انگلیسی</a>
</div>`);
&#13;