gpt4 book ai didi

javascript - 如何修复文本以使其显示在一行上?

转载 作者:行者123 更新时间:2023-12-02 14:12:20 25 4
gpt4 key购买 nike

我希望我的文字内容是“在 Facebook 上为我们点赞,就有机会赢得奖品”。我想要链接“Facebook”一词,但不加下划线。我还希望文本和链接位于一行。 Here is what the output looks like now

这是我的代码。

function popupWin() {
text = "<html>\n<head>\n<title>Pop Window</title>\n<body>\n";
text += "<center>\n<br>";
text += "<h4>Like us on </h4>" + "<a href='myLink' target='_blank'><h4>Facebook</h4></a>" + " <h4>and win a prize</h4>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 1000);
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=200');
newWindow.document.write(text);
}

最佳答案

function popupWin() {
text = "<html>\n<head>\n<title>Pop Window</title>\n<body>\n";
text += "<center>\n<br>";
text += "<h4>Like us on " + "<a href='myLink' target='_blank' style='text-decoration: none;'>Facebook</a>" + " and win a prize</h4>";
text += "</center>\n</body>\n</html>\n";
setTimeout('windowProp(text)', 1000);
}
function windowProp(text) {
newWindow = window.open('','newWin','width=300,height=200');
newWindow.document.write(text);
}

popupWin();

一个<h4>标签足以使整个文本成为 h4。您不需要将其相乘。

对于没有下划线的 Facebook 链接,CSS text-decoration: none 负责在内联 html 属性中 style .

关于javascript - 如何修复文本以使其显示在一行上?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39418790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com