2017-10-04 66 views
-4

此代码有问题,但我找不到该错误。请帮助解决这个问题。java脚本Uncaught语法错误:无效或意外的令牌

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>&nbsp; 

<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>&nbsp; 

<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>&nbsp; 

<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>&nbsp; 

<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>&nbsp; 

<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>&nbsp;  
</div> 
     '); 
+0

是什么让你这么肯定有什么错呢?任何类型的错误信息可能有帮助? – geisterfurz007

回答

1

你的问题在这里。 ''中的字符串不支持多线,因此您需要连接代码中的每一行。

只要使用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>&nbsp; 
 

 
<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>&nbsp; 
 

 
<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>&nbsp; 
 

 
<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>&nbsp; 
 

 
<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>&nbsp; 
 

 
<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>&nbsp;  
 
</div>`);

相关问题