鍍金池/ 問(wèn)答/ HTML問(wèn)答
詆毀你 回答

<title></title>

eg:

<svg width="500" height="300" xmlns="http://www.w3.org/2000/svg">
  <g>
    <title>SVG Title Demo example</title>
    <rect x="10" y="10" width="200" height="50"
    style="fill:none; stroke:blue; stroke-width:1px"/>
  </g>
</svg>
舊城人 回答

可能vue理解不到位

絯孑氣 回答

frames可以獲取頁(yè)面中的所有iframe,得到一個(gè)類(lèi)數(shù)組對(duì)象。
如果頁(yè)面只有一個(gè)iframe,$(frames[0].document).find('.btn');//父頁(yè)面獲取子頁(yè)面元素
如果知道iframe的name,可以$(frames['name'].document).find('.btn').hide();

尛曖昧 回答

factory就是this后面的函數(shù),實(shí)際上這是一個(gè)立即執(zhí)行函數(shù),作用是判斷你要實(shí)現(xiàn)的功能(即this后面的function)是否可以用amd或cmd的方式引用,this和后面的function都是傳入的參數(shù),分別對(duì)應(yīng)global和factory.

紓惘 回答

echarts配置項(xiàng),yAxis,show

柚稚 回答

從字面上意思跟垃圾回收沒(méi)什么關(guān)系。
是你的組件是綁定在"#ckimg"上的,并且是多次,照著邏輯你點(diǎn)第三個(gè)圖片會(huì)打印3次。

老梗 回答

修飾符直接寫(xiě)事件上好像就不能解除了,不過(guò)可以通過(guò)這樣方式實(shí)現(xiàn)你的需求

  <form v-on:submit="e => isPrevent && e.preventDefault()"></form>

isPreventtrue才觸發(fā)prevent

$('.hideShow:eq(0)').prevAll().css('background', 'red')

兮顏 回答

在瀏覽器中,js不能讀寫(xiě)本地文件。

久不遇 回答

on...本來(lái)就是等待觸發(fā)時(shí)機(jī)的~

痞性 回答

把@keyup改為@input,就可以了
ex:

<input type="text" v-model="keyword" @keyup="keyWordSerach">

<input type="text" v-model="keyword" @input="keyWordSerach">
喜歡你 回答

這里建議用 <label> + <input type="radio"> 來(lái)做,可以不用綁定事件。

.chart(v-for="(item, index) in charts", v-if="show == index")
  chart(:data="item")

.buttons
  label 重要值
    input(type="radio", v-model="show", value="0")
  label 相對(duì)多度
    input(type="radio", v-model="show", value="1")
  label 相對(duì)頻度
    input(type="radio", v-model="show", value="2")
  label 相對(duì)顯著度
    input(type="radio", v-model="show", value="3")
<div class="chart" v-for="(item, index) in charts" v-if="show == index">
  <chart :data="item"></chart>
</div>
<div class="buttons">
  <label>重要值
    <input type="radio" v-model="show" value="0"/>
  </label>
  <label>相對(duì)多度
    <input type="radio" v-model="show" value="1"/>
  </label>
  <label>相對(duì)頻度
    <input type="radio" v-model="show" value="2"/>
  </label>
  <label>相對(duì)顯著度
    <input type="radio" v-model="show" value="3"/>
  </label>
</div>

至于 v-if 還是 v-show,兩者的區(qū)別主要在于前者是“用到才創(chuàng)建”,后者則是先創(chuàng)建組件和 DOM,用到再顯示,參考你的餅圖,應(yīng)該影響不大,用哪個(gè)都行。

維他命 回答

//點(diǎn)擊確定按鈕的時(shí)候
addPermission:function(){

var that = this;
that.$validator.validateAll().then((result) => {
    //如果表單不為空
    if(result){
        var finalPath = that.new_path1 + ":" + that.new_path2;
        console.log(finalPath); //為什么是underfine
    }
})

}

一個(gè)布爾值來(lái)控制他是否可編輯就行了

痞性 回答

把getShortTxtWithLength這個(gè)函數(shù)綁定在vue.prototype上不可以么?

笑浮塵 回答

a標(biāo)簽的 target="_blank" 影響的, params本身保存在內(nèi)存中的, 跳轉(zhuǎn)后新的標(biāo)簽頁(yè)是不會(huì)存儲(chǔ)的, 謝謝阿蛇同學(xué)

你的瞳 回答

修改grid配置項(xiàng)

xAxis:{
  // ...
}
grid:{
  bottom:0 // 圖表距離容器下方邊距
}

在xAxis配置中,offset是x軸刻度文字的偏移,無(wú)法控制軸線(xiàn)的偏移。