<img src="#" onerror=alert(/xss/)>

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

19回答
李大美老师22 提问者 2024-04-24 13:59:39

测试视频显示回答

  • 提问者 李大美老师22 #1

    回复回答显示

    2024-04-24 14:00:07
  • 提问者 李大美老师22 #2

    回复的回复显示


    2024-04-24 14:00:39
  • 提问者 李大美老师22 #3

    回复的回复的显示

    2024-04-24 14:01:03
神针V 2021-09-27 10:38:54

class Solution {

public:

    bool canJump(vector<int>& nums) {

        const int n = nums.size();

        int now = 0;                 //如果这个点能够到达,尝试更新最远点

        for(int i = 0; i < n; ++i) if(now >= i) now = max(now, i + nums[i]);

        return now >= n - 1;

    }

};


神针V 2021-09-27 10:37:57
class Solution {
public:
bool canJump(vector<int>& nums) {
const int n = nums.size();
bool dp[n];
memset(dp, 0, sizeof(dp));
dp[0] = 1; //第0位能够到达
for(int i = 0; i < n; ++i)
if(dp[i]) //如果第i位能够到达
for(int j = 1; j <= nums[i] && i + j < n; ++j)
dp[i + j] = 1; //它的后nums[i]位也能到达
return dp[n - 1];
}
};


神针V 2021-09-27 10:37:31

class Solution {

public:

    bool canJump(vector<int>& nums) {

        const int n = nums.size();

        bool dp[n];

        memset(dp, 0, sizeof(dp));

        dp[0] = 1;  //第0位能够到达

        for(int i = 0; i < n; ++i) 

            if(dp[i])  //如果第i位能够到达

            for(int j = 1; j <= nums[i] && i + j < n; ++j)

                dp[i + j] = 1; //它的后nums[i]位也能到达

        return dp[n - 1];

    }

};



酒饱饱 2021-09-27 10:26:19



<style type="text/css">    
.moco-modal-info {
font-size: 14px;
line-height: 20px;
}


酒饱饱 2021-05-18 10:23:44

测试与喜爱哈哈哈哈哈

酒饱饱 2021-05-18 10:23:30

测试与喜爱哈哈哈哈哈

小鱼0319zn 2021-05-18 10:22:44

通融通融特我尔特特特贝特 

酒饱饱 2020-10-27 19:51:34
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--type-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTTP 404 您所访问的页面不存在</title>
<style>
*{margin:0;padding:0;}
.wrong-warp{width:960px;margin:100px auto 0;background:#fff;}
.wrong-warp img,.wrong-warp p{float:left;height:216px;line-height:216px;color:#a3a3a3;font-size:18px;font-family:"微软雅黑";}
.wrong-warp img{margin:0 37px 0 150px;}
.wrong-warp p a{color:#c9394a;text-decoration:none;}
.wrong-warp p a:hover{text-decoration:underline;}
.wrong{ width: 239px; height: 216px; display: block; margin: 0 37px 0 150px; background-position: left top; float: left; }
</style>
</head>

<body>
<div class="wrong-warp">
<div class="wrong"></div>
<p>您访问的页面不存在,回<a href="/">首页</a>再瞅瞅!</p>
</div>
</body>
</html>


酒饱饱 2020-10-27 19:27:06
HTTP 404 {::}
.{:::}
..{::::::}
.{:}
.{::}
.:{:}
.{ : ()}
.{ : : : : : : }


酒饱饱 2020-10-27 19:26:35
HTTP 404 {::}
.{:::}
..{::::::}
.{:}
.{::}
.:{:}
.{ : ()}
.{ : : : : : : }


  • Fr_View #1

    测试编辑按钮显示

    2021-07-29 14:19:16
酒饱饱 2020-10-27 19:25:45

<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0"

         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>


    <groupId>com.imooc</groupId>

    <artifactId>mybatis</artifactId>

    <version>1.0-SNAPSHOT</version>

    <repositories>

        <repository>

            <id>aliyun</id>

            <name>aliyun</name>

            <url>https://maven.aliyun.com/repository/public</url>

        </repository>

    </repositories>

    <dependencies>

        <dependency>

            <groupId>org.mybatis</groupId>

            <artifactId>mybatis</artifactId>

            <version>3.5.1</version>

        </dependency>

        <dependency>

            <groupId>mysql</groupId>

            <artifactId>mysql-connector-java</artifactId>

            <version>5.1.47</version>

        </dependency>

        <dependency>

            <groupId>junit</groupId>

            <artifactId>junit</artifactId>

            <version>4.12</version>

        </dependency>

        <dependency>

            <groupId>ch.qos.logback</groupId>

            <artifactId>logback-classic</artifactId>

            <version>1.2.3</version>

        </dependency>


        <dependency>

            <groupId>com.github.pagehelper</groupId>

            <artifactId>pagehelper</artifactId>

            <version>5.1.10</version>

        </dependency>


        <dependency>

            <groupId>com.mchange</groupId>

            <artifactId>c3p0</artifactId>

            <version>0.9.5.4</version>

        </dependency>

    </dependencies>

</project>


  • 乔Joan #1
    看下是不是限制了
    2020-12-02 14:38:14
酒饱饱 2020-10-27 19:19:21
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!--type-->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTTP 404 您所访问的页面不存在</title>
<style>
*{margin:0;padding:0;}
.wrong-warp{width:960px;margin:100px auto 0;background:#fff;}
.wrong-warp img,.wrong-warp p{float:left;height:216px;line-height:216px;color:#a3a3a3;font-size:18px;font-family:"微软雅黑";}
.wrong-warp img{margin:0 37px 0 150px;}
.wrong-warp p a{color:#c9394a;text-decoration:none;}
.wrong-warp p a:hover{text-decoration:underline;}
wrong{ width: 239px; height: 216px; display: block; margin: 0 37px 0 150px; background-position: left top; float: left; }
</style>
</head>

<body>
<div class="wrong-warp">
<div class="wrong"></div>
<p>您访问的页面不存在,回<a href="/">首页</a>再瞅瞅!</p>
</div>
</body>
</html>


酒饱饱 2020-10-27 19:18:48

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<!--type-->

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>HTTP 404 您所访问的页面不存在</title>

<style>

*{margin:0;padding:0;}

.wrong-warp{width:960px;margin:100px auto 0;background:#fff;}

.wrong-warp img,.wrong-warp p{float:left;height:216px;line-height:216px;color:#a3a3a3;font-size:18px;font-family:"微软雅黑";}

.wrong-warp img{margin:0 37px 0 150px;}

.wrong-warp p a{color:#c9394a;text-decoration:none;}

.wrong-warp p a:hover{text-decoration:underline;}

wrong{ width: 239px; height: 216px; display: block; margin: 0 37px 0 150px; background-position: left top; float: left; }

</style>

</head>


<body>

<div class="wrong-warp">

<div class="wrong"></div>

<p>您访问的页面不存在,回<a href="/">首页</a>再瞅瞅!</p>

</div>

</body>

</html>


酒饱饱 2020-10-27 19:17:08


HTTP 404 {::}
.{:::}
..{::::::}
.{:}
.{::}
.:{:}
.{ : ()}
.{ : : : : : : }


小鱼0319zn 2020-10-14 11:36:04

灰度回答问题323213213

  • <script>alert('xss')</script>
    2020-10-15 18:38:29
  • <script>alert('xss')</script>
    2020-10-15 18:38:36
  • 20201015回复问题灰度回复
    2020-10-15 18:41:41
改个美的昵称1 2020-10-14 11:14:59

<script>alert('xss')</script>

  • <script>alert('xss')</script>
    2020-10-15 18:28:42
  • <script>alert('xss')</script>
    2020-10-15 18:28:48
z张_cuichan01 2020-10-13 19:44:38

aaaaaaaaaaaaaaaaaaaaaaaaaaaaa

改个美的昵称1 2020-10-13 12:11:06

<img src="#" onerror=alert(/xss/)>

问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
java测试课程
  • 参与学习           人
  • 提交作业       66    份
  • 解答问题       279    个

在本次项目,我们将一起回顾 Web时代的变迁,了解五花八门的前端研发工具,深入学习HTML5(超文本标记语言)和CSS3(层叠样式表),并最终完成一个 百度首页。

了解课程
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师